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