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