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