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