11 lines
546 B
TypeScript
11 lines
546 B
TypeScript
export { Button, type ButtonProps } from './Button';
|
|
export { Heading, type HeadingProps } from './Heading';
|
|
export { Paragraph, type ParagraphProps } from './Paragraph';
|
|
export { Image, type ImageProps } from './Image';
|
|
export { Container, type ContainerProps } from './Container';
|
|
export { Section, type SectionProps } from './Section';
|
|
export { Row, type RowProps } from './Row';
|
|
export { Column, type ColumnProps } from './Column';
|
|
export { Divider, type DividerProps } from './Divider';
|
|
export { Spacer, type SpacerProps } from './Spacer';
|
|
|