From 76bcdfc00ba9f590f597d8ed117cc47ad2ec758f Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Tue, 2 Sep 2025 16:47:39 +0800 Subject: [PATCH] Simplified form component --- fwt/components/Form/Form.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/fwt/components/Form/Form.tsx b/fwt/components/Form/Form.tsx index 9436017..a498c76 100644 --- a/fwt/components/Form/Form.tsx +++ b/fwt/components/Form/Form.tsx @@ -1,19 +1,15 @@ import './Form.sass' import type { JSXElement } from 'solid-js' -import Button from '../Button/Button' interface Props { children: JSXElement - edges?: 'curved' | 'rounded' | 'flat' - design?: 'bu-primary' | 'bu-link' | 'bu-info' | 'bu-success' | 'bu-warning' | 'bu-danger' | 'bu-dark' | 'bu-light' | 'bu-text' | 'bu-ghost' | 'bo-primary' | 'bo-secondary' | 'bo-success' | 'bo-danger' | 'bo-warning' | 'bo-info' | 'bo-light' | 'bo-dark' | 'bo-link' } export default (props: Props) => { return ( <> -
+ {props.children} -