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