UNPKG

react-fblibrary

Version:

FBLibrary é uma biblioteca autoral que reúne componentes e bases fundamentais para desenvolvimento eficiente. Nosso objetivo é criar um ecossistema de componentes, desde elementos simples, como inputs e botões, até layouts completos, que podem ser reutili

15 lines (14 loc) 604 B
import React from 'react'; import { IButton } from './types'; /** * Renders a button component with the given properties. * * @param {string} label - The label text for the button. * @param {string} type - The type of button. * @param {string} styles - Additional styles for the button. * @param {function} onClick - The click event handler for the button. * @param {string} className - The class name for the button. * @param {object} props - Additional props for the button component. * @return {ReactElement} The rendered button component. */ export declare const Button: React.FC<IButton>;