diff --git a/CLAUDE.md b/CLAUDE.md
index c747973c77..37e6a1c2c5 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -206,7 +206,7 @@ function MyComponent() {
return (
- Hello
+ Hello
)
}
@@ -414,12 +414,16 @@ import {Text, H1, H2, P} from '#/components/Typography'
Heading
Paragraph text with default styling.
-Custom text
+Custom text
-// For text with emoji, add the emoji prop
+// For text with emoji, add the emoji prop. User-generated text (e.g. display names)
+// will almost certainly contain emoji, so only omit it when the text is static and
+// does not contain an emoji
Hello! 👋
```
+The `Text` component's default style is `[a.text_sm, a.leading_snug, t.atoms.text]`.
+
### TextField
```tsx