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