summaryrefslogtreecommitdiff
path: root/src/components/ArrowButton.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ArrowButton.tsx')
-rw-r--r--src/components/ArrowButton.tsx12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/components/ArrowButton.tsx b/src/components/ArrowButton.tsx
new file mode 100644
index 0000000..ce0c898
--- /dev/null
+++ b/src/components/ArrowButton.tsx
@@ -0,0 +1,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; \ No newline at end of file