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