import { useId } from "react"; import type { IconFC } from "./types.js"; /** * @internal */ export const PhoneIcon: IconFC = (props) => { const clipPathId = useId(); return ( ); };