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