We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e73d7d commit ec9969dCopy full SHA for ec9969d
src/components/Buttons/SubmitButton.jsx
@@ -20,8 +20,9 @@ export const SubmitButton = ({
20
isLoading,
21
isSuccess,
22
disabled = false,
23
- className,
24
variant = "standard",
+ type = "submit",
25
+ className,
26
children,
27
...rest
28
}) => {
@@ -44,6 +45,7 @@ export const SubmitButton = ({
44
45
46
return (
47
<Button
48
+ type={type}
49
color={color}
50
disabled={showTransition || disabled}
51
variant={variant}
src/icons/package.json
@@ -13,7 +13,6 @@
13
"main": "build/icons.es.js",
14
"module": "build/icons.es.js",
15
"scripts": {
16
- "preinstall": "vite build",
17
"prepare": "vite build",
18
"build": "vite build",
19
"format": "prettier --write -l src",
0 commit comments