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