16
common/resources/client/billing/billing-page/billing-plan-panel.tsx
Executable file
16
common/resources/client/billing/billing-page/billing-plan-panel.tsx
Executable file
@@ -0,0 +1,16 @@
|
||||
import {ReactNode} from 'react';
|
||||
|
||||
interface BillingPlanPanelProps {
|
||||
title: ReactNode;
|
||||
children: ReactNode;
|
||||
}
|
||||
export function BillingPlanPanel({title, children}: BillingPlanPanelProps) {
|
||||
return (
|
||||
<div className="mb-64">
|
||||
<div className="text-sm font-medium uppercase pb-16 mb-16 border-b">
|
||||
{title}
|
||||
</div>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user