UNPKG
pricing-table-react
Version:
latest (1.1.5)
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0
A simple pricing plan for react
pricing-table-react
/
lib
/
components
/
Plan
/
Plan.d.ts
12 lines
(11 loc)
•
279 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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
;