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