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