import "./Island.scss"; import React from "react"; import clsx from "clsx"; type IslandProps = { children: React.ReactNode; padding?: number; className?: string | boolean; style?: object; }; export const Island = React.forwardRef( ({ children, padding, className, style }, ref) => (
{children}
), );