UNPKG

@szum-tech/design-system

Version:

Szum-Tech design system with tailwindcss support

26 lines (17 loc) 1.53 kB
import * as react_jsx_runtime from 'react/jsx-runtime'; import * as React from 'react'; type CardProps = React.ComponentProps<"div">; declare function Card({ className, ...props }: CardProps): react_jsx_runtime.JSX.Element; type CardHeaderProps = React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>; declare function CardHeader({ className, ...props }: CardHeaderProps): react_jsx_runtime.JSX.Element; type CardTitleProps = React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>; declare function CardTitle({ className, ...props }: CardTitleProps): react_jsx_runtime.JSX.Element; type CardDescriptionProps = React.ComponentProps<"div">; declare function CardDescription({ className, ...props }: CardDescriptionProps): react_jsx_runtime.JSX.Element; type CardContentProps = React.ComponentProps<"div">; declare function CardContent({ className, ...props }: CardContentProps): react_jsx_runtime.JSX.Element; type CardFooterProps = React.ComponentProps<"div">; declare function CardFooter({ className, ...props }: CardFooterProps): react_jsx_runtime.JSX.Element; type CardActionProps = React.ComponentProps<"div">; declare function CardAction({ className, ...props }: CardActionProps): react_jsx_runtime.JSX.Element; export { Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps };