import * as React from 'react'; export interface IButtonProps { secondary?: boolean; disabled?: boolean; className?: string; onClick: () => void; } export const Button: React.FunctionComponent = ({ onClick, className, disabled, secondary, children }: React.PropsWithChildren) => { return ( ); };