27 lines
559 B
TypeScript
27 lines
559 B
TypeScript
// Button
|
|
export { Button, type ButtonProps } from './button'
|
|
|
|
// Card
|
|
export {
|
|
Card,
|
|
CardHeader,
|
|
CardTitle,
|
|
CardDescription,
|
|
type CardProps,
|
|
type CardHeaderProps,
|
|
type CardTitleProps,
|
|
type CardDescriptionProps,
|
|
} from './card'
|
|
|
|
// GlitchText
|
|
export { GlitchText, type GlitchTextProps } from './glitch-text'
|
|
|
|
// PixelBorder
|
|
export { PixelBorder, type PixelBorderProps } from './pixel-border'
|
|
|
|
// Container
|
|
export { Container, type ContainerProps } from './container'
|
|
|
|
// PixelLogo
|
|
export { PixelLogo, type PixelLogoProps } from './pixel-logo'
|