Skip to content

Commit

Permalink
fix(LinearProgress): Now exporting the component STC-543
Browse files Browse the repository at this point in the history
  • Loading branch information
VagnerNico committed Nov 24, 2021
1 parent 984c5ce commit 9853f77
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions src/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
export { default as Accordion } from "./Accordion/Accordion"
export type { AccordionProps } from "./Accordion/Accordion"

export { default as Autocomplete } from "./Autocomplete/Autocomplete"
export type { AutocompleteProps } from "./Autocomplete/Autocomplete"

export { default as Alert } from "./Alert/Alert"
export type { AlertProps } from "./Alert/Alert"

export { default as Autocomplete } from "./Autocomplete/Autocomplete"
export type { AutocompleteProps } from "./Autocomplete/Autocomplete"

export { default as Avatar } from "./Avatar/Avatar"
export type { AvatarProps } from "./Avatar/Avatar"

Expand Down Expand Up @@ -50,11 +50,14 @@ export type { HighlightProps } from "./Highlight/Highlight"
export { default as Icon } from "./Icon/Icon"
export type { IconProps } from "./Icon/Icon"

export { default as Input } from "./Input/Input"
export type { InputProps } from "./Input/Input"

export { default as InputGroup } from "./InputGroup/InputGroup"
export type { InputGroupProps } from "./InputGroup/InputGroup"

export { default as Input } from "./Input/Input"
export type { InputProps } from "./Input/Input"
export { default as LinearProgress } from "./LinearProgress/LinearProgress"
export type { LinearProgressProps } from "./LinearProgress/LinearProgress"

export { default as ListSelect } from "./ListSelect/ListSelect"
export type { ListSelectProps } from "./ListSelect/ListSelect"
Expand All @@ -74,14 +77,11 @@ export type { PopoverProps } from "./Popover/Popover"
export { default as Radio } from "./Radio/Radio"
export type { RadioProps } from "./Radio/Radio"

export { default as Skeleton } from "./Skeleton/Skeleton"
export type { SkeletonProps } from "./Skeleton/Skeleton"

export { default as Select } from "./Select/Select"
export type { SelectProps } from "./Select/Select"

export { default as SubNavigationMenu } from "./SubNavigationMenu/SubNavigationMenu"
export type { SubNavigationMenuProps } from "./SubNavigationMenu/SubNavigationMenu"
export { default as Skeleton } from "./Skeleton/Skeleton"
export type { SkeletonProps } from "./Skeleton/Skeleton"

export { default as Snackbar } from "./Snackbar/Snackbar"
export type { SnackbarProps } from "./Snackbar/Snackbar"
Expand All @@ -92,18 +92,21 @@ export { useSnackbar } from "./Snackbar/hooks/useSnackbar"
export { default as Spinner } from "./Spinner/Spinner"
export type { SpinnerProps } from "./Spinner/Spinner"

export { default as SubNavigationMenu } from "./SubNavigationMenu/SubNavigationMenu"
export type { SubNavigationMenuProps } from "./SubNavigationMenu/SubNavigationMenu"

export { Switch } from "./Switch/Switch"
export type { SwitchProps } from "./Switch/Switch"

export { default as Table } from "./Table/Table"
export type { TableProps } from "./Table/Table"

export { default as TableFilters } from "./TableFilters/TableFilters"
export type { TableFiltersProps } from "./TableFilters/TableFilters"

export { default as TextField } from "./TextField/TextField"
export type { TextFieldProps } from "./TextField/TextField"

export { default as TableFilters } from "./TableFilters/TableFilters"
export type { TableFiltersProps } from "./TableFilters/TableFilters"

export { default as ThemeWrapper } from "../theme/ThemeWrapper"
export type { IThemeWrapperProps as ThemeWrapperProps } from "../theme/ThemeWrapper"

Expand Down

0 comments on commit 9853f77

Please sign in to comment.