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