# Saved Card Plugin

## Installation

You can use the following command to install the extension with the latest plugins:

```bash
npx @akinon/projectzero@latest --plugins
```

## Usage

##### File Path: src/views/checkout/steps/payment/options/saved-card.tsx

```jsx
import PluginModule, { Component } from '@akinon/next/components/plugin-module';

const SavedCard = () => {
  return (
    <PluginModule
      component={Component.SavedCard}
      props={{
        texts: {
          title: 'Pay with Saved Card',
          button: 'Pay Now'
        }
      }}
    />
  );
};

export default SavedCard;
```
