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