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