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