mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-03-23 02:35:28 +00:00
22 lines
589 B
TypeScript
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'
|