mirror of
https://github.com/luxfi/dao.git
synced 2026-07-27 02:51:24 +00:00
24 lines
464 B
TypeScript
24 lines
464 B
TypeScript
import Checkbox from './Checkbox';
|
|
import Alert from './alert';
|
|
import Button from './button';
|
|
import IconButton from './iconButton';
|
|
import Input from './input';
|
|
import NumberInput from './numberInput';
|
|
import Progress from './progress';
|
|
import Switch from './switch';
|
|
import Tabs from './tabs';
|
|
import Textarea from './textarea';
|
|
|
|
export default {
|
|
Alert,
|
|
Button,
|
|
IconButton,
|
|
Input,
|
|
Textarea,
|
|
NumberInput,
|
|
Progress,
|
|
Switch,
|
|
Tabs,
|
|
Checkbox,
|
|
};
|