@spark-web/section-card
v0.1.0
Published
A card container for content sections with optional header and footer. Compose with SectionHeader for a complete section layout.
Readme
@spark-web/section-card
A card container for content sections with optional header and footer. Compose with SectionHeader for a complete section layout.
Usage
import { SectionCard } from '@spark-web/section-card';
import { SectionHeader } from '@spark-web/section-header';
<SectionCard
header={
<SectionHeader
label="Business Details"
statusBadge={{ children: 'Active', tone: 'positive' }}
/>
}
>
Content goes here.
</SectionCard>;