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