import './Modal.sass' import { type JSXElement, Show } from 'solid-js' interface Props { children: JSXElement background?: string color?: string border?: string opacity?: number trigger: boolean } export default (props: Props) => { return ( <> ) }