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