feat: add form components with styles for input, textarea, and input number

- Introduced new styles for form components including input, textarea, and input number.
- Created a new TextArea component with status and variant support.
- Updated global styles to include form variables and component styles.
- Added type definitions for form components to ensure consistency.
- Integrated new components into the main component index for easy access.
This commit is contained in:
Firman Ramdhani
2026-01-26 11:45:28 +07:00
parent 52db305314
commit d4114702a0
22 changed files with 1238 additions and 22 deletions
@@ -0,0 +1,8 @@
export * from './types';
export * from './form-provider';
export * from './input/input.component';
export * from './input/input-password.component';
export * from './input/input-number.component';
export * from './textarea/textarea.component';