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