import * as React from 'react'; import { BaseButton, IButtonProps } from '../base-button'; interface ISecondaryButtonProps extends IButtonProps { children: any, className?: string, } export const SecondaryButton = ({ children, className, ...rest }: ISecondaryButtonProps) => ( {children} );