UNPKG

@meshify/form-elements

Version:
12 lines (11 loc) 288 B
/// <reference types="react" /> import "./../styles/button.scss"; interface IProps { text: string; type?: "submit" | "button"; disabled?: boolean; className?: string; onClick?: () => void; } declare const Button: (props: IProps) => JSX.Element; export default Button;