Files
personal-website/components/Button/index.tsx
T
2023-03-19 00:17:48 +01:00

18 lines
334 B
TypeScript

import { Props } from './types';
import { StyledButton } from './styles';
const Button = ({
variant = 'text',
href,
target,
onClick,
children,
className
}: Props) => (
<StyledButton href={href} target={target} className={className} onClick={onClick} variant={variant}>
{children}
</StyledButton>
);
export default Button;