Files
trackgo-fe/packages/ui/src/components/forms/index.ts
T
Firman Ramdhani 793d1e2b15 feat: add Switch component and showcase
- Introduced a new Switch component with variants and status colors.
- Created a SwitchShowcase component to demonstrate the Switch functionality.
- Updated package.json to include dayjs and rc-component/switch dependencies.
- Added styles for the Switch component in switch.style.css.
- Updated form.style.css to import switch styles.
- Enhanced types for Switch props in types/index.ts.
- Updated globals.css with CSS variables for the Switch component.
2026-02-02 16:02:45 +07:00

12 lines
386 B
TypeScript

export * from './types';
export * from './form-provider';
export * from './input/input.component';
export * from './input/input-password.component';
export * from './input/input-currency.component';
export * from './input/input-number.component';
export * from './textarea/textarea.component';
export * from './checkbox/checkbox.component';
export * from './switch/switch.component';