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