@upv/react-ui-core
Version:
**USHI Design System — Modern UI Component Library**
27 lines (26 loc) • 706 B
TypeScript
import React from "react";
type BackgroundMediaType = "image" | "video" | "lottie";
interface DefaultSectionProps {
title?: string;
subtitle?: string;
content?: React.ReactNode;
actions?: React.ReactNode;
alignment?: "left" | "center" | "right";
backgroundMedia?: {
type: BackgroundMediaType;
src: string;
lottieOptions?: object;
alt?: string;
};
overlayColor?: string;
fullHeight?: boolean;
backgroundColor?: string;
contentOverlay?: {
color?: string;
blur?: boolean;
padding?: string;
borderRadius?: string;
};
}
export declare const DefaultSection: React.FC<DefaultSectionProps>;
export {};