/** @jsx h */ import { h } from "https://esm.sh/preact@10.17.1"; import { tw } from "https://esm.sh/twind@0.16.16"; import { DividerBackgroundColor, PrimaryTextColor, SuccessColor } from "../style/colors.ts"; import { CopyIcon } from "../icons2/copy-icon.tsx"; import { CenterClass, NoOutlineClass } from "./tw.ts"; import { CheckIcon } from "../icons2/check-icon.tsx"; export function OnFocusTransitionButton(props: { class?: string | h.JSX.SignalLike | undefined; onFocus?: h.JSX.FocusEventHandler; }) { return ( ); }