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