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