import * as React from 'react'; export interface ArrowRight48Props extends React.SVGProps { ariaLabel?: string } export default function ArrowRight48({ ariaLabel, ...props }: ArrowRight48Props) { return ( ); }