blob: ce0c8983e302249b827cb39c7ec224f7f4b30d72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import Button, { ButtonProps } from './Button.tsx';
import './ArrowButton.css';
const ArrowButton = ({ children, ...props }: ButtonProps) => {
return (
<Button {...props} class={(props.class || '') + ' __ArrowButton'}>
{children}
</Button>
);
};
export default ArrowButton;
|