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