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