From de5b68318cce26244d7240dcd5f489fa8ffdcd16 Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Wed, 24 Sep 2025 14:03:36 +0800 Subject: [PATCH] Added class props to form --- src/components/Form/Form.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Form/Form.tsx b/src/components/Form/Form.tsx index a53c7aa..45df0e6 100644 --- a/src/components/Form/Form.tsx +++ b/src/components/Form/Form.tsx @@ -3,12 +3,13 @@ import type { JSXElement } from 'solid-js' interface Props { children: JSXElement + class?: string } export default (props: Props) => { return ( <> -
+ {props.children}