UNPKG

@switch-to-eu/layout-ui

Version:

Modular UI design system for privacy-focused tools - React components with Tailwind CSS and theme customization

22 lines 923 B
import * as React from "react"; export interface SectionCardProps { children: React.ReactNode; className?: string; } export interface SectionHeaderProps { children?: React.ReactNode; icon?: React.ReactNode; title: string; description?: string; className?: string; variant?: "primary" | "secondary" | "tertiary" | "quaternary" | "neutral"; } export interface SectionContentProps { children: React.ReactNode; className?: string; } declare const SectionCard: React.ForwardRefExoticComponent<SectionCardProps & React.RefAttributes<HTMLDivElement>>; declare const SectionHeader: React.ForwardRefExoticComponent<SectionHeaderProps & React.RefAttributes<HTMLDivElement>>; declare const SectionContent: React.ForwardRefExoticComponent<SectionContentProps & React.RefAttributes<HTMLDivElement>>; export { SectionCard, SectionHeader, SectionContent }; //# sourceMappingURL=SectionCard.d.ts.map