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