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