diff --git a/src/components/forms/Button.tsx b/src/components/forms/Button.tsx index 7f3458c..62edde6 100644 --- a/src/components/forms/Button.tsx +++ b/src/components/forms/Button.tsx @@ -15,7 +15,7 @@ function Primary ({ }: ButtonProps) { return ( @@ -30,7 +30,23 @@ function Secondary ({ }: ButtonProps) { return ( + ) +} + + +function Danger ({ + className, + style, + onClick, + children +}: ButtonProps) { + return ( + @@ -45,7 +61,7 @@ function Button ({ }: ButtonProps) { return ( @@ -54,5 +70,6 @@ function Button ({ Button.Primary = Primary; Button.Secondary = Secondary; +Button.Danger = Danger; export default Button; \ No newline at end of file diff --git a/src/components/forms/EvoInput.tsx b/src/components/forms/EvoInput.tsx index 2e8b7a9..26a8867 100644 --- a/src/components/forms/EvoInput.tsx +++ b/src/components/forms/EvoInput.tsx @@ -25,7 +25,7 @@ export default function EvoInput ({