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