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