UNPKG

@nile-ui/nile-ui

Version:

Modern and beautiful looking component designs

74 lines (72 loc) 1.91 kB
// Types import { TooltipProps } from './Tooltip/types' import { HeroBodyProps } from './Hero/Body/types' import { HeroProps } from './Hero/types' import { TextProps } from './Typography/Text/textTypes' import { ParagraphProps } from './Typography/Paragraph/types' import { TitleProps } from './Typography/Title/types' import { SubtitleProps } from './Typography/Subtitle/types' import { TableRowProps } from './Table/Row/types' import { TableHeadProps } from './Table/Head/types' import { TableFooterProps } from './Table/Footer/types' import { TableCellProps } from './Table/Cell/types' import { TableBodyProps } from './Table/Body/types' import { RowProps } from './Grid/Row/types' import { TableProps } from './Table/types' import { SectionProps } from './Section/types' import { ColProps } from './Grid/Col/types' import { ContainerProps } from './Container/types' import { ButtonProps } from './Button/types' import { ButtonGroupProps } from './ButtonGroup/types' import { TagProps } from './Tag/types' // Components import Button from './Button' import Container from './Container' import Col from './Grid/Col' import Section from './Section' import Table from './Table' import Row from './Grid/Row' import { Subtitle, Title, Paragraph, Text } from './Typography' import Hero from './Hero' import Avatar from './Avatar' import Tooltip from './Tooltip' import Tag from './Tag' import ButtonGroup from './ButtonGroup' export { Avatar, Button, ButtonGroup, Container, Section, Title, Subtitle, Paragraph, Text, Table, Row, Col, Hero, Tooltip, Tag, // Props ButtonProps, ButtonGroupProps, ContainerProps, ColProps, SectionProps, TableProps, TableBodyProps, TableCellProps, TableFooterProps, TableHeadProps, TableRowProps, RowProps, SubtitleProps, TitleProps, ParagraphProps, TextProps, HeroProps, HeroBodyProps, TooltipProps, TagProps }