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