UNPKG

@codeworker.br/govbr-tw-react

Version:

Biblioteca de componentes React usando Tailwind CSS que implementa o Padrão Digital de Governo.

18 lines (17 loc) 551 B
import { ComponentProps, FC } from "react"; interface CardProps extends ComponentProps<"div"> { disabled?: boolean; } interface CardHeaderProps extends ComponentProps<"header"> { } interface CardMainProps extends ComponentProps<"main"> { } interface CardFooterProps extends ComponentProps<"footer"> { } declare const Card: { ({ className, children, disabled, ...props }: CardProps): import("react/jsx-runtime").JSX.Element; Header: FC<CardHeaderProps>; Main: FC<CardMainProps>; Footer: FC<CardFooterProps>; }; export default Card;