import type { SVGProps } from "react"; export interface XingOriginalProps extends SVGProps { /** * Icon size (width and height) * @default 16 */ size?: number | string; } /** * XingOriginal icon from social-media category * * @example * * */ export const XingOriginal = ({ size = 16, ...props }: XingOriginalProps) => ( );