JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "billing-plan-panel.tsx"

Full Path: /home/markqprx/iniasli.pro/client/billing/billing-page/billing-plan-panel.tsx
File size: 368 bytes
MIME-type: text/plain
Charset: utf-8

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>
  );
}