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