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