import { FunctionComponent } from 'react'; import { IIconButtonProps } from './interfaces'; import { PrimaryButton } from '../PrimaryButton/PrimaryButton'; import { ctw } from '../../../utils/ctw/ctw'; export const IconButton: FunctionComponent = ({ children, className, leftIcon, rightIcon, }) => { return ( {leftIcon} {children} {rightIcon} ); };