aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/forms/form.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-05-16 19:40:23 +0200
committerArmand Philippot <git@armandphilippot.com>2022-05-16 19:40:23 +0200
commitc77c58e18143233be042c4980a6ed08ae9beac52 (patch)
tree94f7d828571a86470ae299fff7dffd32fb38de7c /src/components/atoms/forms/form.tsx
parent2155550fa36a3bc3c8f66e0926530123b4018cd4 (diff)
chore: adjust and complete missing styles
* add logo to topics pages and links * add Prism styles to articles * and a few other adjustements
Diffstat (limited to 'src/components/atoms/forms/form.tsx')
-rw-r--r--src/components/atoms/forms/form.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/atoms/forms/form.tsx b/src/components/atoms/forms/form.tsx
index ef8dce4..b819aea 100644
--- a/src/components/atoms/forms/form.tsx
+++ b/src/components/atoms/forms/form.tsx
@@ -35,7 +35,6 @@ export type FormProps = {
*/
const Form: FC<FormProps> = ({
children,
- className = '',
grouped = true,
onSubmit,
...props
@@ -68,7 +67,7 @@ const Form: FC<FormProps> = ({
};
return (
- <form onSubmit={handleSubmit} className={className} {...props}>
+ <form onSubmit={handleSubmit} {...props}>
{getFormItems()}
</form>
);