@upv/react-ui-core
Version:
**USHI Design System — Modern UI Component Library**
15 lines (14 loc) • 356 B
TypeScript
import React from "react";
import { LucideIcon } from "lucide-react";
interface Feature {
icon: LucideIcon;
title: string;
description: string;
}
interface FeatureSectionProps {
sectionTitle?: string;
sectionDescription?: string;
features: Feature[];
}
export declare const FeatureSection: React.FC<FeatureSectionProps>;
export {};