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