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