import { Icon } from "../../icon"; interface MobileFABProps { onClick: () => void; label?: string; } export const MobileFAB: React.FC = ({ onClick, label = "Create new", }) => { return ( ); };