mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-03-31 06:35:23 +00:00
21 lines
480 B
TypeScript
21 lines
480 B
TypeScript
/**
|
|
* @ocelot-social/ui
|
|
*
|
|
* Vue component library for ocelot.social
|
|
* Works with Vue 2.7+ and Vue 3
|
|
*
|
|
* Note: CSS is built separately - import '@ocelot-social/ui/style.css' in your app
|
|
*/
|
|
|
|
// Re-export all components
|
|
export * from './components'
|
|
|
|
// Export Vue plugin for global registration
|
|
export { default as OcelotUI } from './plugin'
|
|
|
|
// Export utilities
|
|
export { cn } from './utils'
|
|
|
|
// Export prop types
|
|
export type { Size, Rounded, Shadow, Variant } from './types'
|