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