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