import { useId } from "react"; import type { IconFC } from "../types.js"; export const CADIcon: IconFC = (props) => { const id = useId(); return ( ); };