22 lines
589 B
TypeScript

/**
* Component exports
*
* Single source of truth for all components.
* Add new components here - they will automatically be:
* - Available as named exports: import { OsButton } from '@ocelot-social/ui'
* - Registered globally when using the plugin: app.use(OcelotUI)
*/
export { OsButton, buttonVariants, type ButtonSize, type ButtonVariants } from './OsButton'
export {
OsIcon,
ICON_SIZES,
IconCheck,
IconClose,
IconPlus,
SYSTEM_ICONS,
type SystemIconName,
} from './OsIcon'
export { OsSpinner, SPINNER_SIZES } from './OsSpinner'
export { OsCard } from './OsCard'