import XNode from "@web-atoms/core/dist/core/XNode"; import IElement from "./IElement"; import "./styles/switch.global.css"; /** * Original source = https://www.htmllion.com/css3-toggle-switch-button.html */ export interface ISwitch extends IElement { checked; onLabel?: string; offLabel?: string; } export default function Switch({ checked, onLabel, offLabel, ... a }: ISwitch) { return ; }