import React from 'react'; /** * Renders the Image icon * @param {React.SVGProps} props - The props for the Image component * @returns {JSX.Element} - The Image component * @example * * @example * * @example * */ export default function Image({ isDecorative, ...props }: { isDecorative: boolean } & React.SVGProps) { return ( {!isDecorative && image icon} ); }