UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

13 lines (12 loc) 369 B
import React from "react"; import { DefaultSectionProps } from "./DefaultSection"; interface CTASectionProps extends DefaultSectionProps { title?: string; subtitle?: string; primaryLabel?: string; secondaryLabel?: string; onPrimary?: () => void; onSecondary?: () => void; } export declare const CTASection: React.FC<CTASectionProps>; export {};