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