import { MagnifyingGlassIcon } from "@heroicons/react/20/solid"; import { Input } from "~/components/primitives/Input"; import { ShortcutKey } from "~/components/primitives/ShortcutKey"; export default function Story() { return (
); } function InputFieldSet({ disabled }: { disabled?: boolean }) { return (
} /> } /> } /> } />
); }