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