import { h, JSX } from "preact"; export default function Fab({ className, children, alignLeft, ...props }: JSX.HTMLAttributes & { alignLeft: boolean }) { let cl = "ht-fab " + (alignLeft ? "ht-fab-left " : ""); return ( ); }