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