UNPKG

simple-react-ui-kits

Version:

A lightweight, customizable React UI component library built with TypeScript and Tailwind CSS

20 lines (15 loc) 763 B
// Components 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'; // Hooks export { useToggle } from './hooks/useToggle'; export { useLocalStorage } from './hooks/useLocalStorage'; // Utils export { cn } from './utils/cn'; export { formatNumber, formatDate, formatCurrency, truncateText } from './utils/formatters';