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