import type { ComponentPropsWithoutRef, FC } from 'react' import { useId } from 'react' type Props = ComponentPropsWithoutRef<'svg'> export const XLogo: FC = (props) => { const clipId = useId() return ( ) }