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