import React from "react"; import { classNames } from "../lib/utils"; interface Props { children: React.ReactNode; onClick?: () => void; disabled?: boolean; fullwidth?: boolean; small?: boolean; icon?: boolean; secondary?: boolean; [key: string]: any; } // button component, consuming props const StandardButton: React.FC = ({ children, onClick = () => {}, disabled = false, fullwidth = false, small = false, icon = false, secondary = false, ...rest }) => { return ( ); }; export default StandardButton;