File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,9 @@ type Status = "idle" | "loading" | "error"
2323const status: Status = " loading" // String literal union
2424
2525// ✅ Automatically ignored - styling props, constants, and numeric strings
26- < Box containerClassName = " flex items-center" / > // *ClassName, *Class, *Color, etc.
27- < div className = {clsx(" px-4" , " py-2" )} / > // className utilities (cx, clsx, etc.)
26+ < Box containerClassName = " flex items-center" / > // *ClassName, *Color, *Style, etc.
27+ < div className = {clsx(" px-4" , " py-2" )} / > // className utilities (clsx, cn, etc.)
28+ < Calendar classNames = {{ day : " bg-white" }} / > // nested classNames objects
2829const STATUS_COLORS = { active: " bg-green-100" } // *_COLORS, *_CLASSES, etc.
2930const price = " 1,00€" // No letters = technical
3031
You can’t perform that action at this time.
0 commit comments