import "./Island.css"; import React from "react"; type IslandProps = { children: React.ReactNode; padding?: number }; export const Island = React.forwardRef( ({ children, padding }, ref) => (
{children}
), );