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