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