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