diff --git a/src/builtin-components/Button/Button.sass b/src/builtin-components/Button/Button.sass
index 0e01f21..b2a4d46 100644
--- a/src/builtin-components/Button/Button.sass
+++ b/src/builtin-components/Button/Button.sass
@@ -4,13 +4,13 @@
.button
background: vars.$primaryColor
border: none
- border-radius: 16px
+ border-radius: 32px
color: white
padding: 0.5rem 1.25rem
text-align: center
text-decoration: none
display: inline-block
- font-size: 0.75rem
+ font-size: 1rem
font-weight: 700
cursor: pointer
transition: all 0.2s ease-out
diff --git a/src/builtin-components/Button/Button.tsx b/src/builtin-components/Button/Button.tsx
index 33adc78..5a4611a 100644
--- a/src/builtin-components/Button/Button.tsx
+++ b/src/builtin-components/Button/Button.tsx
@@ -2,22 +2,25 @@ import './Button.sass'
import { Show } from 'solid-js'
interface Props {
- label?: string;
- to?: string;
- onClick?: () => void;
+ label?: string
+ to?: string
+ onClick?: () => void
}
export default (props: Props) => {
- return
- <>
-
-
-
-
-
+ return (
+ <>
+
+
+
+
+
-
-
-
- >
-}
\ No newline at end of file
+
+
+
+ >
+ )
+}