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