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