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