/** ... */ export function S({ $: TagName = 'span', _: modifier = '', className, children, ...props }: { $?: string, _?: string, } & React.ComponentProps) { const cls = [className, ...(modifier.match(/\.(\w+)/g) ?? [])].map(s => s.slice(1)).join(' '); return {children}; }