mirror of
https://github.com/filecoin-project/slate.git
synced 2024-12-26 10:34:09 +03:00
63 lines
2.0 KiB
JavaScript
63 lines
2.0 KiB
JavaScript
// NOTE(jim): Components
|
|
import {
|
|
ButtonPrimary,
|
|
ButtonPrimaryFull,
|
|
ButtonSecondary,
|
|
ButtonSecondaryFull,
|
|
ButtonDisabled,
|
|
ButtonDisabledFull,
|
|
} from '~/components/system/components/Buttons';
|
|
import { CardTabGroup } from '~/components/system/components/CardTabGroup';
|
|
import { CheckBox } from '~/components/system/components/CheckBox';
|
|
import { CodeBlock } from '~/components/system/components/CodeBlock';
|
|
import { CodeTextarea } from '~/components/system/components/CodeTextarea';
|
|
import { Input } from '~/components/system/components/Input';
|
|
import { PopoverNavigation } from '~/components/system/components/PopoverNavigation';
|
|
import { RadioGroup } from '~/components/system/components/RadioGroup';
|
|
import { SelectMenu, SelectMenuFull } from '~/components/system/components/SelectMenus';
|
|
import { StatUpload, StatDownload } from '~/components/system/components/Stat';
|
|
import { StatCard } from '~/components/system/components/StatCard';
|
|
import { TabGroup } from '~/components/system/components/TabGroup';
|
|
import { Table } from '~/components/system/components/Table';
|
|
import { Textarea } from '~/components/system/components/Textarea';
|
|
import { Toggle } from '~/components/system/components/Toggle';
|
|
import { H1, H2, P } from '~/components/system/components/Typography';
|
|
|
|
// NOTE(jim): Fragments
|
|
import { TooltipAnchor } from '~/components/system/components/fragments/TooltipAnchor';
|
|
import { DescriptionGroup } from '~/components/system/components/fragments/DescriptionGroup';
|
|
import { TableContent, TableColumn } from '~/components/system/components/fragments/TableComponents';
|
|
|
|
// NOTE(jim): Export everything.
|
|
export {
|
|
ButtonPrimary,
|
|
ButtonPrimaryFull,
|
|
ButtonSecondary,
|
|
ButtonSecondaryFull,
|
|
ButtonDisabled,
|
|
ButtonDisabledFull,
|
|
CardTabGroup,
|
|
CheckBox,
|
|
CodeBlock,
|
|
CodeTextarea,
|
|
Input,
|
|
PopoverNavigation,
|
|
RadioGroup,
|
|
SelectMenu,
|
|
SelectMenuFull,
|
|
StatUpload,
|
|
StatDownload,
|
|
StatCard,
|
|
TabGroup,
|
|
Table,
|
|
Textarea,
|
|
Toggle,
|
|
H1,
|
|
H2,
|
|
P,
|
|
TooltipAnchor,
|
|
DescriptionGroup,
|
|
TableContent,
|
|
TableColumn,
|
|
};
|