@gluestack-ui/fab
Version:
A universal headless fab component for React Native, Next.js & React
12 lines (11 loc) • 333 B
JSX
import FabMain from './Fab';
import FabLabel from './FabLabel';
import { FabIcon } from './FabIcon';
export function createFab({ Root, Label, Icon, }) {
const Fab = FabMain(Root);
Fab.Label = FabLabel(Label);
Fab.Icon = FabIcon(Icon);
Fab.displayName = 'Fab';
Fab.Icon.displayName = 'Fab.Icon';
return Fab;
}