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