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