Components
TestimonialCard
Testimonial card with quote, author info, and optional avatar.
Import
import { TestimonialCard } from "@sigil-ui/components";Preview
Usage
<TestimonialCard
quote="Sigil cut our design-to-dev handoff time in half."
author="Soren Wilder"
role="Design Lead, Halflight"
/>With avatar
<TestimonialCard
quote="The token system is a game-changer for consistency."
author="Alex Chen"
role="Frontend Engineer"
avatar="/avatars/alex.jpg"
/>Grid layout
<div className="grid grid-cols-1 md:grid-cols-3 gap-6">
<TestimonialCard quote="Fast and beautiful." author="A" role="CEO" />
<TestimonialCard quote="Best design system we've used." author="B" role="CTO" />
<TestimonialCard quote="Preset switching is magic." author="C" role="Designer" />
</div>Props
| Prop | Type | Default | Description |
|---|---|---|---|
quote | string | — | Testimonial quote text |
author | string | — | Author name |
role | string | — | Author role or company |
avatar | string | — | Avatar image URL |
className | string | — | Additional CSS classes |