// components/Alert.js import { h } from "sigpro"; export const Alert = (props, children) => { children === undefined && (children = props, props = {}); return h("div", { ...props, class: `alert ${props.class ?? ''}` }, children); };