UNPKG

notion-design-system

Version:

A comprehensive Notion-inspired design system built with React, TypeScript, and Tailwind CSS

21 lines (20 loc) 1.02 kB
import '../styles/globals.css'; export { default as Button } from './Button/Button'; export type { ButtonProps } from './Button/Button'; export { default as Input } from './Input/Input'; export type { InputProps } from './Input/Input'; export { default as Typography } from './Typography/Typography'; export type { TypographyProps } from './Typography/Typography'; export { default as Card } from './Card/Card'; export type { CardProps } from './Card/Card'; export { default as Badge } from './Badge/Badge'; export type { BadgeProps } from './Badge/Badge'; export { default as Avatar } from './Avatar/Avatar'; export type { AvatarProps } from './Avatar/Avatar'; export { default as Tooltip } from './Tooltip/Tooltip'; export type { TooltipProps } from './Tooltip/Tooltip'; export { default as Block } from './Block/Block'; export type { BlockProps } from './Block/Block'; export { default as Sidebar } from './Sidebar/Sidebar'; export type { SidebarProps, SidebarItem } from './Sidebar/Sidebar'; export * from '../types';