import { Props, c } from "atomico"; // 2.5kB function component({ name }:Props) { return Hello, {name}; } component.props = { name: String, }; customElements.define("my-component", c(component));