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