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