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