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