simple-react-ui-kits
Version:
A lightweight, customizable React UI component library built with TypeScript and Tailwind CSS
13 lines • 742 B
TypeScript
export { Button } from './components/Button';
export type { ButtonProps } from './components/Button';
export { Input } from './components/Input';
export type { InputProps } from './components/Input';
export { Card, CardHeader, CardBody, CardFooter } from './components/Card';
export type { CardProps, CardHeaderProps, CardBodyProps, CardFooterProps } from './components/Card';
export { Badge } from './components/Badge';
export type { BadgeProps } from './components/Badge';
export { useToggle } from './hooks/useToggle';
export { useLocalStorage } from './hooks/useLocalStorage';
export { cn } from './utils/cn';
export { formatNumber, formatDate, formatCurrency, truncateText } from './utils/formatters';
//# sourceMappingURL=index.d.ts.map