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