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