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