import React from 'react'; import styles from './styles.scss'; import classnames from 'classnames'; interface Props { onClick(event: React.MouseEvent): void; prefixIcon?: React.ReactNode; children: React.ReactNode; disabled?: boolean; className?: string; } const TextButton: React.FunctionComponent = ({ className, onClick, disabled, prefixIcon, children, }) => ( ); export default TextButton;