UNPKG

pricing-table-react

Version:

A simple pricing plan for react

12 lines (11 loc) 279 B
import React from "react"; import { PlanProps } from "../../index"; import "./style.css"; interface IPlanProps { Plans: PlanProps[]; Currency: string; BackColor?: string; Color?: string; } declare const Plan: React.FC<IPlanProps>; export default Plan;