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