UNPKG

@codeworker.br/govbr-tw-react

Version:

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

7 lines (6 loc) 207 B
import { ComponentProps, FC } from "react"; interface GovLogoProps extends ComponentProps<"svg"> { variant?: "default" | "white" | "black"; } declare const GovLogo: FC<GovLogoProps>; export { GovLogo };