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