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