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