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