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