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