UNPKG

borderless

Version:

Componentes da Borderless

23 lines (22 loc) 546 B
import React from "react"; type ButtonProps = { onClick?: () => void; children: React.ReactNode; className?: string; width?: string; height?: string; isFull?: boolean; color?: string; backgroundColor?: string; gradient?: [string, string]; directionGradient?: string; borderRadius?: string; borderWidth?: string; borderColor?: string; fontSize?: string; fontWeight?: string; shadow?: boolean; disabled?: boolean; }; export declare const Button: React.FC<ButtonProps>; export {};