23 lines
645 B
TypeScript
23 lines
645 B
TypeScript
/**
|
|
* AeThex UI Component Library
|
|
* Shared components across all platforms
|
|
*/
|
|
|
|
// Design tokens
|
|
export * from './styles/tokens';
|
|
|
|
// Components
|
|
export { Button } from './components/Button';
|
|
export type { ButtonProps } from './components/Button';
|
|
|
|
export { Input } from './components/Input';
|
|
export type { InputProps } from './components/Input';
|
|
|
|
export { Avatar } from './components/Avatar';
|
|
export type { AvatarProps } from './components/Avatar';
|
|
|
|
export { Card } from './components/Card';
|
|
export type { CardProps } from './components/Card';
|
|
|
|
export { Badge } from './components/Badge';
|
|
export type { BadgeProps } from './components/Badge';
|