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