import type { SVGProps } from "react"; import { useId } from "react"; import { cx } from "@/utils/cx"; export const UntitledLogoMinimal = (props: SVGProps) => { const id = useId(); return ( ); };