Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Living wiki of UI design patterns and best practices built with Fumadocs, Next.js, and Base UI components.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
rules/morphing-strokelinecap-round.md
1---2title: Round Stroke Line Caps3impact: LOW4tags: morphing, stroke, svg5---67## Round Stroke Line Caps89Lines should use strokeLinecap="round" for polished endpoints.1011**Incorrect (butt caps):**1213```tsx14<motion.line strokeLinecap="butt" />15```1617**Correct (round caps):**1819```tsx20<motion.line strokeLinecap="round" />21```22