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