UNPKG

@gluestack-ui/core

Version:

Universal UI components for React Native, Expo, and Next.js

12 lines 367 B
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; } //# sourceMappingURL=index.jsx.map