diff --git a/fwt/components/Button/Button.tsx b/fwt/components/Button/Button.tsx index 5238044..61b7e7a 100644 --- a/fwt/components/Button/Button.tsx +++ b/fwt/components/Button/Button.tsx @@ -7,7 +7,6 @@ interface Props { onClick?: () => void 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' - submit?: boolean } const getBorderRadius = (edge: Props['edges']) => { @@ -50,30 +49,14 @@ export default (props: Props) => { - - - - - - - + - - - - - - - + diff --git a/fwt/components/Form/Form.tsx b/fwt/components/Form/Form.tsx index 9436017..8f9f706 100644 --- a/fwt/components/Form/Form.tsx +++ b/fwt/components/Form/Form.tsx @@ -1,6 +1,6 @@ import './Form.sass' import type { JSXElement } from 'solid-js' -import Button from '../Button/Button' +import Submit from '../Submit/Submit' interface Props { children: JSXElement @@ -13,7 +13,7 @@ export default (props: Props) => { <>
{props.children} -
+ + + + + + + + + + + + + + + + + + + + + + ) +} diff --git a/src/pages/index.astro b/src/pages/index.astro index a42c855..a316f6b 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -13,8 +13,6 @@ import Image from '../../fwt/components/Image/Image' import PA1 from '../../fwt/images/pat-alcala.avif' import PA2 from '../../fwt/images/pat-alcala.webp' import Copyright from '../../fwt/components/Copyright/Copyright' - -// const sample = import.meta.env.SAMPLE ---