import { Tag } from "sigpro"; export const Button = (props, children) => { const { class: className, ...rest } = props; return Tag("button", { ...rest, class: `btn ${className || ''}`.trim() }, children); };