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