40 Soviet constructivist shapes for agitational UI. Sharp angular forms inspired by El Lissitzky, Rodchenko, and the revolutionary graphic design of the 1920s.
import { SovietStar, RedWedge, Gear } from "@/components/ui/shapes"
// Basic usage
<SovietStar size={64} />
// Custom colors
<RedWedge
fill="var(--main)"
stroke="var(--border)"
size={80}
/>
// With className
<Gear className="animate-spin" size={48} />| Prop | Type | Default | Description |
|---|---|---|---|
| size | number | 64 | Width and height in pixels |
| fill | string | var(--main) | Primary fill color |
| stroke | string | var(--border) | Stroke/secondary color |
| className | string | - | Additional CSS classes |