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