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