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