[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-expo-expo-tailwind-setup":3,"mdc-2n8lys-key":37,"related-repo-expo-expo-tailwind-setup":8280,"related-org-expo-expo-tailwind-setup":8384},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"expo-tailwind-setup","set up Tailwind CSS in Expo projects","Framework (OSS). Set up Tailwind CSS v4 in Expo with react-native-css and NativeWind v5 for universal styling",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"expo","Expo","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fexpo.png",[12,14,17,20,23],{"name":9,"slug":8,"type":13},"tag",{"name":15,"slug":16,"type":13},"Mobile","mobile",{"name":18,"slug":19,"type":13},"Tailwind CSS","tailwind-css",{"name":21,"slug":22,"type":13},"Frontend","frontend",{"name":24,"slug":25,"type":13},"Design","design",2190,"https:\u002F\u002Fgithub.com\u002Fexpo\u002Fskills","2026-07-24T05:36:47.174175","MIT",111,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"A collection of AI agent skills for working with Expo projects and Expo Application Services","https:\u002F\u002Fgithub.com\u002Fexpo\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fexpo\u002Fskills\u002Fexpo-tailwind-setup","---\nname: expo-tailwind-setup\ndescription: Framework (OSS). Set up Tailwind CSS v4 in Expo with react-native-css and NativeWind v5 for universal styling\nversion: 1.0.0\nlicense: MIT\n---\n\n# Tailwind CSS Setup for Expo with react-native-css\n\nThis guide covers setting up Tailwind CSS v4 in Expo using react-native-css and NativeWind v5 for universal styling across iOS, Android, and Web.\n\n## Overview\n\nThis setup uses:\n\n- **Tailwind CSS v4** - Modern CSS-first configuration\n- **react-native-css** - CSS runtime for React Native\n- **NativeWind v5** - Metro transformer for Tailwind in React Native\n- **@tailwindcss\u002Fpostcss** - PostCSS plugin for Tailwind v4\n\n## Installation\n\n```bash\n# Install dependencies\nnpx expo install tailwindcss@^4 nativewind@5.0.0-preview.2 react-native-css@0.0.0-nightly.5ce6396 @tailwindcss\u002Fpostcss tailwind-merge clsx\n```\n\nAdd resolutions for lightningcss compatibility:\n\n```json\n\u002F\u002F package.json\n{\n  \"resolutions\": {\n    \"lightningcss\": \"1.30.1\"\n  }\n}\n```\n\n- autoprefixer is not needed in Expo because of lightningcss\n- postcss is included in expo by default\n\n## Configuration Files\n\n### Metro Config\n\nCreate or update `metro.config.js`:\n\n```js\n\u002F\u002F metro.config.js\nconst { getDefaultConfig } = require(\"expo\u002Fmetro-config\");\nconst { withNativewind } = require(\"nativewind\u002Fmetro\");\n\n\u002F** @type {import('expo\u002Fmetro-config').MetroConfig} *\u002F\nconst config = getDefaultConfig(__dirname);\n\nmodule.exports = withNativewind(config, {\n  \u002F\u002F inline variables break PlatformColor in CSS variables\n  inlineVariables: false,\n  \u002F\u002F We add className support manually\n  globalClassNamePolyfill: false,\n});\n```\n\n### PostCSS Config\n\nCreate `postcss.config.mjs`:\n\n```js\n\u002F\u002F postcss.config.mjs\nexport default {\n  plugins: {\n    \"@tailwindcss\u002Fpostcss\": {},\n  },\n};\n```\n\n### Global CSS\n\nCreate `src\u002Fglobal.css`:\n\n```css\n@import \"tailwindcss\u002Ftheme.css\" layer(theme);\n@import \"tailwindcss\u002Fpreflight.css\" layer(base);\n@import \"tailwindcss\u002Futilities.css\";\n\n\u002F* Platform-specific font families *\u002F\n@media android {\n  :root {\n    --font-mono: monospace;\n    --font-rounded: normal;\n    --font-serif: serif;\n    --font-sans: normal;\n  }\n}\n\n@media ios {\n  :root {\n    --font-mono: ui-monospace;\n    --font-serif: ui-serif;\n    --font-sans: system-ui;\n    --font-rounded: ui-rounded;\n  }\n}\n```\n\n## IMPORTANT: No Babel Config Needed\n\nWith Tailwind v4 and NativeWind v5, you do NOT need a babel.config.js for Tailwind. Remove any NativeWind babel presets if present:\n\n```js\n\u002F\u002F DELETE babel.config.js if it only contains NativeWind config\n\u002F\u002F The following is NO LONGER needed:\n\u002F\u002F module.exports = function (api) {\n\u002F\u002F   api.cache(true);\n\u002F\u002F   return {\n\u002F\u002F     presets: [\n\u002F\u002F       [\"babel-preset-expo\", { jsxImportSource: \"nativewind\" }],\n\u002F\u002F       \"nativewind\u002Fbabel\",\n\u002F\u002F     ],\n\u002F\u002F   };\n\u002F\u002F };\n```\n\n## CSS Component Wrappers\n\nSince react-native-css requires explicit CSS element wrapping, create reusable components:\n\n### Main Components (`src\u002Ftw\u002Findex.tsx`)\n\n```tsx\nimport {\n  useCssElement,\n  useNativeVariable as useFunctionalVariable,\n} from \"react-native-css\";\n\nimport { Link as RouterLink } from \"expo-router\";\nimport Animated from \"react-native-reanimated\";\nimport React from \"react\";\nimport {\n  View as RNView,\n  Text as RNText,\n  Pressable as RNPressable,\n  ScrollView as RNScrollView,\n  TouchableHighlight as RNTouchableHighlight,\n  TextInput as RNTextInput,\n  StyleSheet,\n} from \"react-native\";\n\n\u002F\u002F CSS-enabled Link\nexport const Link = (\n  props: React.ComponentProps\u003Ctypeof RouterLink> & { className?: string }\n) => {\n  return useCssElement(RouterLink, props, { className: \"style\" });\n};\n\nLink.Trigger = RouterLink.Trigger;\nLink.Menu = RouterLink.Menu;\nLink.MenuAction = RouterLink.MenuAction;\nLink.Preview = RouterLink.Preview;\n\n\u002F\u002F CSS Variable hook\nexport const useCSSVariable =\n  process.env.EXPO_OS !== \"web\"\n    ? useFunctionalVariable\n    : (variable: string) => `var(${variable})`;\n\n\u002F\u002F View\nexport type ViewProps = React.ComponentProps\u003Ctypeof RNView> & {\n  className?: string;\n};\n\nexport const View = (props: ViewProps) => {\n  return useCssElement(RNView, props, { className: \"style\" });\n};\nView.displayName = \"CSS(View)\";\n\n\u002F\u002F Text\nexport const Text = (\n  props: React.ComponentProps\u003Ctypeof RNText> & { className?: string }\n) => {\n  return useCssElement(RNText, props, { className: \"style\" });\n};\nText.displayName = \"CSS(Text)\";\n\n\u002F\u002F ScrollView\nexport const ScrollView = (\n  props: React.ComponentProps\u003Ctypeof RNScrollView> & {\n    className?: string;\n    contentContainerClassName?: string;\n  }\n) => {\n  return useCssElement(RNScrollView, props, {\n    className: \"style\",\n    contentContainerClassName: \"contentContainerStyle\",\n  });\n};\nScrollView.displayName = \"CSS(ScrollView)\";\n\n\u002F\u002F Pressable\nexport const Pressable = (\n  props: React.ComponentProps\u003Ctypeof RNPressable> & { className?: string }\n) => {\n  return useCssElement(RNPressable, props, { className: \"style\" });\n};\nPressable.displayName = \"CSS(Pressable)\";\n\n\u002F\u002F TextInput\nexport const TextInput = (\n  props: React.ComponentProps\u003Ctypeof RNTextInput> & { className?: string }\n) => {\n  return useCssElement(RNTextInput, props, { className: \"style\" });\n};\nTextInput.displayName = \"CSS(TextInput)\";\n\n\u002F\u002F AnimatedScrollView\nexport const AnimatedScrollView = (\n  props: React.ComponentProps\u003Ctypeof Animated.ScrollView> & {\n    className?: string;\n    contentClassName?: string;\n    contentContainerClassName?: string;\n  }\n) => {\n  return useCssElement(Animated.ScrollView, props, {\n    className: \"style\",\n    contentClassName: \"contentContainerStyle\",\n    contentContainerClassName: \"contentContainerStyle\",\n  });\n};\n\n\u002F\u002F TouchableHighlight with underlayColor extraction\nfunction XXTouchableHighlight(\n  props: React.ComponentProps\u003Ctypeof RNTouchableHighlight>\n) {\n  const { underlayColor, ...style } = StyleSheet.flatten(props.style) || {};\n  return (\n    \u003CRNTouchableHighlight\n      underlayColor={underlayColor}\n      {...props}\n      style={style}\n    \u002F>\n  );\n}\n\nexport const TouchableHighlight = (\n  props: React.ComponentProps\u003Ctypeof RNTouchableHighlight>\n) => {\n  return useCssElement(XXTouchableHighlight, props, { className: \"style\" });\n};\nTouchableHighlight.displayName = \"CSS(TouchableHighlight)\";\n```\n\n### Image Component (`src\u002Ftw\u002Fimage.tsx`)\n\n```tsx\nimport { useCssElement } from \"react-native-css\";\nimport React from \"react\";\nimport { StyleSheet } from \"react-native\";\nimport Animated from \"react-native-reanimated\";\nimport { Image as RNImage } from \"expo-image\";\n\nconst AnimatedExpoImage = Animated.createAnimatedComponent(RNImage);\n\nexport type ImageProps = React.ComponentProps\u003Ctypeof Image>;\n\nfunction CSSImage(props: React.ComponentProps\u003Ctypeof AnimatedExpoImage>) {\n  \u002F\u002F @ts-expect-error: Remap objectFit style to contentFit property\n  const { objectFit, objectPosition, ...style } =\n    StyleSheet.flatten(props.style) || {};\n\n  return (\n    \u003CAnimatedExpoImage\n      contentFit={objectFit}\n      contentPosition={objectPosition}\n      {...props}\n      source={\n        typeof props.source === \"string\" ? { uri: props.source } : props.source\n      }\n      \u002F\u002F @ts-expect-error: Style is remapped above\n      style={style}\n    \u002F>\n  );\n}\n\nexport const Image = (\n  props: React.ComponentProps\u003Ctypeof CSSImage> & { className?: string }\n) => {\n  return useCssElement(CSSImage, props, { className: \"style\" });\n};\n\nImage.displayName = \"CSS(Image)\";\n```\n\n### Animated Components (`src\u002Ftw\u002Fanimated.tsx`)\n\n```tsx\nimport * as TW from \".\u002Findex\";\nimport RNAnimated from \"react-native-reanimated\";\n\nexport const Animated = {\n  ...RNAnimated,\n  View: RNAnimated.createAnimatedComponent(TW.View),\n};\n```\n\n## Usage\n\nImport CSS-wrapped components from your tw directory:\n\n```tsx\nimport { View, Text, ScrollView, Image } from \"@\u002Ftw\";\n\nexport default function MyScreen() {\n  return (\n    \u003CScrollView className=\"flex-1 bg-white\">\n      \u003CView className=\"p-4 gap-4\">\n        \u003CText className=\"text-xl font-bold text-gray-900\">Hello Tailwind!\u003C\u002FText>\n        \u003CImage\n          className=\"w-full h-48 rounded-lg object-cover\"\n          source={{ uri: \"https:\u002F\u002Fexample.com\u002Fimage.jpg\" }}\n        \u002F>\n      \u003C\u002FView>\n    \u003C\u002FScrollView>\n  );\n}\n```\n\n## Custom Theme Variables\n\nAdd custom theme variables in your global.css using `@theme`:\n\n```css\n@layer theme {\n  @theme {\n    \u002F* Custom fonts *\u002F\n    --font-rounded: \"SF Pro Rounded\", sans-serif;\n\n    \u002F* Custom line heights *\u002F\n    --text-xs--line-height: calc(1em \u002F 0.75);\n    --text-sm--line-height: calc(1.25em \u002F 0.875);\n    --text-base--line-height: calc(1.5em \u002F 1);\n\n    \u002F* Custom leading scales *\u002F\n    --leading-tight: 1.25em;\n    --leading-snug: 1.375em;\n    --leading-normal: 1.5em;\n  }\n}\n```\n\n## Platform-Specific Styles\n\nUse platform media queries for platform-specific styling:\n\n```css\n@media ios {\n  :root {\n    --font-sans: system-ui;\n    --font-rounded: ui-rounded;\n  }\n}\n\n@media android {\n  :root {\n    --font-sans: normal;\n    --font-rounded: normal;\n  }\n}\n```\n\n## Apple System Colors with CSS Variables\n\nCreate a CSS file for Apple semantic colors:\n\n```css\n\u002F* src\u002Fcss\u002Fsf.css *\u002F\n@layer base {\n  html {\n    color-scheme: light;\n  }\n}\n\n:root {\n  \u002F* Accent colors with light\u002Fdark mode *\u002F\n  --sf-blue: light-dark(rgb(0 122 255), rgb(10 132 255));\n  --sf-green: light-dark(rgb(52 199 89), rgb(48 209 89));\n  --sf-red: light-dark(rgb(255 59 48), rgb(255 69 58));\n\n  \u002F* Gray scales *\u002F\n  --sf-gray: light-dark(rgb(142 142 147), rgb(142 142 147));\n  --sf-gray-2: light-dark(rgb(174 174 178), rgb(99 99 102));\n\n  \u002F* Text colors *\u002F\n  --sf-text: light-dark(rgb(0 0 0), rgb(255 255 255));\n  --sf-text-2: light-dark(rgb(60 60 67 \u002F 0.6), rgb(235 235 245 \u002F 0.6));\n\n  \u002F* Background colors *\u002F\n  --sf-bg: light-dark(rgb(255 255 255), rgb(0 0 0));\n  --sf-bg-2: light-dark(rgb(242 242 247), rgb(28 28 30));\n}\n\n\u002F* iOS native colors via platformColor *\u002F\n@media ios {\n  :root {\n    --sf-blue: platformColor(systemBlue);\n    --sf-green: platformColor(systemGreen);\n    --sf-red: platformColor(systemRed);\n    --sf-gray: platformColor(systemGray);\n    --sf-text: platformColor(label);\n    --sf-text-2: platformColor(secondaryLabel);\n    --sf-bg: platformColor(systemBackground);\n    --sf-bg-2: platformColor(secondarySystemBackground);\n  }\n}\n\n\u002F* Register as Tailwind theme colors *\u002F\n@layer theme {\n  @theme {\n    --color-sf-blue: var(--sf-blue);\n    --color-sf-green: var(--sf-green);\n    --color-sf-red: var(--sf-red);\n    --color-sf-gray: var(--sf-gray);\n    --color-sf-text: var(--sf-text);\n    --color-sf-text-2: var(--sf-text-2);\n    --color-sf-bg: var(--sf-bg);\n    --color-sf-bg-2: var(--sf-bg-2);\n  }\n}\n```\n\nThen use in components:\n\n```tsx\n\u003CText className=\"text-sf-text\">Primary text\u003C\u002FText>\n\u003CText className=\"text-sf-text-2\">Secondary text\u003C\u002FText>\n\u003CView className=\"bg-sf-bg\">...\u003C\u002FView>\n```\n\n## Using CSS Variables in JavaScript\n\nUse the `useCSSVariable` hook:\n\n```tsx\nimport { useCSSVariable } from \"@\u002Ftw\";\n\nfunction MyComponent() {\n  const blue = useCSSVariable(\"--sf-blue\");\n\n  return \u003CView style={{ borderColor: blue }} \u002F>;\n}\n```\n\n## Key Differences from NativeWind v4 \u002F Tailwind v3\n\n1. **No babel.config.js** - Configuration is now CSS-first\n2. **PostCSS plugin** - Uses `@tailwindcss\u002Fpostcss` instead of `tailwindcss`\n3. **CSS imports** - Use `@import \"tailwindcss\u002F...\"` instead of `@tailwind` directives\n4. **Theme config** - Use `@theme` in CSS instead of `tailwind.config.js`\n5. **Component wrappers** - Must wrap components with `useCssElement` for className support\n6. **Metro config** - Use `withNativewind` with different options (`inlineVariables: false`)\n\n## Troubleshooting\n\n### Styles not applying\n\n1. Ensure you have the CSS file imported in your app entry\n2. Check that components are wrapped with `useCssElement`\n3. Verify Metro config has `withNativewind` applied\n\n### Platform colors not working\n\n1. Use `platformColor()` in `@media ios` blocks\n2. Fall back to `light-dark()` for web\u002FAndroid\n\n### TypeScript errors\n\nAdd className to component props:\n\n```tsx\ntype Props = React.ComponentProps\u003Ctypeof RNView> & { className?: string };\n```\n\n## Submitting Feedback\nIf you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:\n```bash\nnpx --yes submit-expo-feedback@latest --category skills --subject \"expo-tailwind-setup\" \"\u003Cactionable feedback>\"\n```\nOnly submit when you have something specific and actionable to report. Include as much relevant context as possible.\n",{"data":38,"body":40},{"name":4,"description":6,"version":39,"license":29},"1.0.0",{"type":41,"children":42},"root",[43,52,58,65,70,116,122,197,202,313,326,332,339,351,683,689,701,789,795,806,1202,1208,1213,1308,1314,1319,1332,4357,4370,5298,5311,5488,5494,5499,5883,5889,5901,6112,6118,6123,6301,6307,6312,7527,7532,7699,7705,7718,7895,7901,8027,8033,8039,8069,8075,8112,8118,8123,8195,8201,8206,8270,8275],{"type":44,"tag":45,"props":46,"children":48},"element","h1",{"id":47},"tailwind-css-setup-for-expo-with-react-native-css",[49],{"type":50,"value":51},"text","Tailwind CSS Setup for Expo with react-native-css",{"type":44,"tag":53,"props":54,"children":55},"p",{},[56],{"type":50,"value":57},"This guide covers setting up Tailwind CSS v4 in Expo using react-native-css and NativeWind v5 for universal styling across iOS, Android, and Web.",{"type":44,"tag":59,"props":60,"children":62},"h2",{"id":61},"overview",[63],{"type":50,"value":64},"Overview",{"type":44,"tag":53,"props":66,"children":67},{},[68],{"type":50,"value":69},"This setup uses:",{"type":44,"tag":71,"props":72,"children":73},"ul",{},[74,86,96,106],{"type":44,"tag":75,"props":76,"children":77},"li",{},[78,84],{"type":44,"tag":79,"props":80,"children":81},"strong",{},[82],{"type":50,"value":83},"Tailwind CSS v4",{"type":50,"value":85}," - Modern CSS-first configuration",{"type":44,"tag":75,"props":87,"children":88},{},[89,94],{"type":44,"tag":79,"props":90,"children":91},{},[92],{"type":50,"value":93},"react-native-css",{"type":50,"value":95}," - CSS runtime for React Native",{"type":44,"tag":75,"props":97,"children":98},{},[99,104],{"type":44,"tag":79,"props":100,"children":101},{},[102],{"type":50,"value":103},"NativeWind v5",{"type":50,"value":105}," - Metro transformer for Tailwind in React Native",{"type":44,"tag":75,"props":107,"children":108},{},[109,114],{"type":44,"tag":79,"props":110,"children":111},{},[112],{"type":50,"value":113},"@tailwindcss\u002Fpostcss",{"type":50,"value":115}," - PostCSS plugin for Tailwind v4",{"type":44,"tag":59,"props":117,"children":119},{"id":118},"installation",[120],{"type":50,"value":121},"Installation",{"type":44,"tag":123,"props":124,"children":129},"pre",{"className":125,"code":126,"language":127,"meta":128,"style":128},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Install dependencies\nnpx expo install tailwindcss@^4 nativewind@5.0.0-preview.2 react-native-css@0.0.0-nightly.5ce6396 @tailwindcss\u002Fpostcss tailwind-merge clsx\n","bash","",[130],{"type":44,"tag":131,"props":132,"children":133},"code",{"__ignoreMap":128},[134,146],{"type":44,"tag":135,"props":136,"children":139},"span",{"class":137,"line":138},"line",1,[140],{"type":44,"tag":135,"props":141,"children":143},{"style":142},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[144],{"type":50,"value":145},"# Install dependencies\n",{"type":44,"tag":135,"props":147,"children":149},{"class":137,"line":148},2,[150,156,162,167,172,177,182,187,192],{"type":44,"tag":135,"props":151,"children":153},{"style":152},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[154],{"type":50,"value":155},"npx",{"type":44,"tag":135,"props":157,"children":159},{"style":158},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[160],{"type":50,"value":161}," expo",{"type":44,"tag":135,"props":163,"children":164},{"style":158},[165],{"type":50,"value":166}," install",{"type":44,"tag":135,"props":168,"children":169},{"style":158},[170],{"type":50,"value":171}," tailwindcss@^4",{"type":44,"tag":135,"props":173,"children":174},{"style":158},[175],{"type":50,"value":176}," nativewind@5.0.0-preview.2",{"type":44,"tag":135,"props":178,"children":179},{"style":158},[180],{"type":50,"value":181}," react-native-css@0.0.0-nightly.5ce6396",{"type":44,"tag":135,"props":183,"children":184},{"style":158},[185],{"type":50,"value":186}," @tailwindcss\u002Fpostcss",{"type":44,"tag":135,"props":188,"children":189},{"style":158},[190],{"type":50,"value":191}," tailwind-merge",{"type":44,"tag":135,"props":193,"children":194},{"style":158},[195],{"type":50,"value":196}," clsx\n",{"type":44,"tag":53,"props":198,"children":199},{},[200],{"type":50,"value":201},"Add resolutions for lightningcss compatibility:",{"type":44,"tag":123,"props":203,"children":207},{"className":204,"code":205,"language":206,"meta":128,"style":128},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F package.json\n{\n  \"resolutions\": {\n    \"lightningcss\": \"1.30.1\"\n  }\n}\n","json",[208],{"type":44,"tag":131,"props":209,"children":210},{"__ignoreMap":128},[211,219,228,258,295,304],{"type":44,"tag":135,"props":212,"children":213},{"class":137,"line":138},[214],{"type":44,"tag":135,"props":215,"children":216},{"style":142},[217],{"type":50,"value":218},"\u002F\u002F package.json\n",{"type":44,"tag":135,"props":220,"children":221},{"class":137,"line":148},[222],{"type":44,"tag":135,"props":223,"children":225},{"style":224},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[226],{"type":50,"value":227},"{\n",{"type":44,"tag":135,"props":229,"children":231},{"class":137,"line":230},3,[232,237,243,248,253],{"type":44,"tag":135,"props":233,"children":234},{"style":224},[235],{"type":50,"value":236},"  \"",{"type":44,"tag":135,"props":238,"children":240},{"style":239},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[241],{"type":50,"value":242},"resolutions",{"type":44,"tag":135,"props":244,"children":245},{"style":224},[246],{"type":50,"value":247},"\"",{"type":44,"tag":135,"props":249,"children":250},{"style":224},[251],{"type":50,"value":252},":",{"type":44,"tag":135,"props":254,"children":255},{"style":224},[256],{"type":50,"value":257}," {\n",{"type":44,"tag":135,"props":259,"children":261},{"class":137,"line":260},4,[262,267,272,276,280,285,290],{"type":44,"tag":135,"props":263,"children":264},{"style":224},[265],{"type":50,"value":266},"    \"",{"type":44,"tag":135,"props":268,"children":269},{"style":152},[270],{"type":50,"value":271},"lightningcss",{"type":44,"tag":135,"props":273,"children":274},{"style":224},[275],{"type":50,"value":247},{"type":44,"tag":135,"props":277,"children":278},{"style":224},[279],{"type":50,"value":252},{"type":44,"tag":135,"props":281,"children":282},{"style":224},[283],{"type":50,"value":284}," \"",{"type":44,"tag":135,"props":286,"children":287},{"style":158},[288],{"type":50,"value":289},"1.30.1",{"type":44,"tag":135,"props":291,"children":292},{"style":224},[293],{"type":50,"value":294},"\"\n",{"type":44,"tag":135,"props":296,"children":298},{"class":137,"line":297},5,[299],{"type":44,"tag":135,"props":300,"children":301},{"style":224},[302],{"type":50,"value":303},"  }\n",{"type":44,"tag":135,"props":305,"children":307},{"class":137,"line":306},6,[308],{"type":44,"tag":135,"props":309,"children":310},{"style":224},[311],{"type":50,"value":312},"}\n",{"type":44,"tag":71,"props":314,"children":315},{},[316,321],{"type":44,"tag":75,"props":317,"children":318},{},[319],{"type":50,"value":320},"autoprefixer is not needed in Expo because of lightningcss",{"type":44,"tag":75,"props":322,"children":323},{},[324],{"type":50,"value":325},"postcss is included in expo by default",{"type":44,"tag":59,"props":327,"children":329},{"id":328},"configuration-files",[330],{"type":50,"value":331},"Configuration Files",{"type":44,"tag":333,"props":334,"children":336},"h3",{"id":335},"metro-config",[337],{"type":50,"value":338},"Metro Config",{"type":44,"tag":53,"props":340,"children":341},{},[342,344,350],{"type":50,"value":343},"Create or update ",{"type":44,"tag":131,"props":345,"children":347},{"className":346},[],[348],{"type":50,"value":349},"metro.config.js",{"type":50,"value":252},{"type":44,"tag":123,"props":352,"children":356},{"className":353,"code":354,"language":355,"meta":128,"style":128},"language-js shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F metro.config.js\nconst { getDefaultConfig } = require(\"expo\u002Fmetro-config\");\nconst { withNativewind } = require(\"nativewind\u002Fmetro\");\n\n\u002F** @type {import('expo\u002Fmetro-config').MetroConfig} *\u002F\nconst config = getDefaultConfig(__dirname);\n\nmodule.exports = withNativewind(config, {\n  \u002F\u002F inline variables break PlatformColor in CSS variables\n  inlineVariables: false,\n  \u002F\u002F We add className support manually\n  globalClassNamePolyfill: false,\n});\n","js",[357],{"type":44,"tag":131,"props":358,"children":359},{"__ignoreMap":128},[360,368,431,484,493,532,563,571,603,612,637,646,667],{"type":44,"tag":135,"props":361,"children":362},{"class":137,"line":138},[363],{"type":44,"tag":135,"props":364,"children":365},{"style":142},[366],{"type":50,"value":367},"\u002F\u002F metro.config.js\n",{"type":44,"tag":135,"props":369,"children":370},{"class":137,"line":148},[371,376,381,387,392,397,403,408,412,417,421,426],{"type":44,"tag":135,"props":372,"children":373},{"style":239},[374],{"type":50,"value":375},"const",{"type":44,"tag":135,"props":377,"children":378},{"style":224},[379],{"type":50,"value":380}," {",{"type":44,"tag":135,"props":382,"children":384},{"style":383},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[385],{"type":50,"value":386}," getDefaultConfig ",{"type":44,"tag":135,"props":388,"children":389},{"style":224},[390],{"type":50,"value":391},"}",{"type":44,"tag":135,"props":393,"children":394},{"style":224},[395],{"type":50,"value":396}," =",{"type":44,"tag":135,"props":398,"children":400},{"style":399},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[401],{"type":50,"value":402}," require",{"type":44,"tag":135,"props":404,"children":405},{"style":383},[406],{"type":50,"value":407},"(",{"type":44,"tag":135,"props":409,"children":410},{"style":224},[411],{"type":50,"value":247},{"type":44,"tag":135,"props":413,"children":414},{"style":158},[415],{"type":50,"value":416},"expo\u002Fmetro-config",{"type":44,"tag":135,"props":418,"children":419},{"style":224},[420],{"type":50,"value":247},{"type":44,"tag":135,"props":422,"children":423},{"style":383},[424],{"type":50,"value":425},")",{"type":44,"tag":135,"props":427,"children":428},{"style":224},[429],{"type":50,"value":430},";\n",{"type":44,"tag":135,"props":432,"children":433},{"class":137,"line":230},[434,438,442,447,451,455,459,463,467,472,476,480],{"type":44,"tag":135,"props":435,"children":436},{"style":239},[437],{"type":50,"value":375},{"type":44,"tag":135,"props":439,"children":440},{"style":224},[441],{"type":50,"value":380},{"type":44,"tag":135,"props":443,"children":444},{"style":383},[445],{"type":50,"value":446}," withNativewind ",{"type":44,"tag":135,"props":448,"children":449},{"style":224},[450],{"type":50,"value":391},{"type":44,"tag":135,"props":452,"children":453},{"style":224},[454],{"type":50,"value":396},{"type":44,"tag":135,"props":456,"children":457},{"style":399},[458],{"type":50,"value":402},{"type":44,"tag":135,"props":460,"children":461},{"style":383},[462],{"type":50,"value":407},{"type":44,"tag":135,"props":464,"children":465},{"style":224},[466],{"type":50,"value":247},{"type":44,"tag":135,"props":468,"children":469},{"style":158},[470],{"type":50,"value":471},"nativewind\u002Fmetro",{"type":44,"tag":135,"props":473,"children":474},{"style":224},[475],{"type":50,"value":247},{"type":44,"tag":135,"props":477,"children":478},{"style":383},[479],{"type":50,"value":425},{"type":44,"tag":135,"props":481,"children":482},{"style":224},[483],{"type":50,"value":430},{"type":44,"tag":135,"props":485,"children":486},{"class":137,"line":260},[487],{"type":44,"tag":135,"props":488,"children":490},{"emptyLinePlaceholder":489},true,[491],{"type":50,"value":492},"\n",{"type":44,"tag":135,"props":494,"children":495},{"class":137,"line":297},[496,501,507,513,517,523,527],{"type":44,"tag":135,"props":497,"children":498},{"style":142},[499],{"type":50,"value":500},"\u002F** ",{"type":44,"tag":135,"props":502,"children":504},{"style":503},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[505],{"type":50,"value":506},"@",{"type":44,"tag":135,"props":508,"children":510},{"style":509},"--shiki-light:#9C3EDA;--shiki-light-font-style:italic;--shiki-default:#C792EA;--shiki-default-font-style:italic;--shiki-dark:#C792EA;--shiki-dark-font-style:italic",[511],{"type":50,"value":512},"type",{"type":44,"tag":135,"props":514,"children":515},{"style":503},[516],{"type":50,"value":380},{"type":44,"tag":135,"props":518,"children":520},{"style":519},"--shiki-light:#E2931D;--shiki-light-font-style:italic;--shiki-default:#FFCB6B;--shiki-default-font-style:italic;--shiki-dark:#FFCB6B;--shiki-dark-font-style:italic",[521],{"type":50,"value":522},"import('expo\u002Fmetro-config').MetroConfig",{"type":44,"tag":135,"props":524,"children":525},{"style":503},[526],{"type":50,"value":391},{"type":44,"tag":135,"props":528,"children":529},{"style":142},[530],{"type":50,"value":531}," *\u002F\n",{"type":44,"tag":135,"props":533,"children":534},{"class":137,"line":306},[535,539,544,549,554,559],{"type":44,"tag":135,"props":536,"children":537},{"style":239},[538],{"type":50,"value":375},{"type":44,"tag":135,"props":540,"children":541},{"style":383},[542],{"type":50,"value":543}," config ",{"type":44,"tag":135,"props":545,"children":546},{"style":224},[547],{"type":50,"value":548},"=",{"type":44,"tag":135,"props":550,"children":551},{"style":399},[552],{"type":50,"value":553}," getDefaultConfig",{"type":44,"tag":135,"props":555,"children":556},{"style":383},[557],{"type":50,"value":558},"(__dirname)",{"type":44,"tag":135,"props":560,"children":561},{"style":224},[562],{"type":50,"value":430},{"type":44,"tag":135,"props":564,"children":566},{"class":137,"line":565},7,[567],{"type":44,"tag":135,"props":568,"children":569},{"emptyLinePlaceholder":489},[570],{"type":50,"value":492},{"type":44,"tag":135,"props":572,"children":574},{"class":137,"line":573},8,[575,580,584,589,594,599],{"type":44,"tag":135,"props":576,"children":577},{"style":224},[578],{"type":50,"value":579},"module.exports",{"type":44,"tag":135,"props":581,"children":582},{"style":224},[583],{"type":50,"value":396},{"type":44,"tag":135,"props":585,"children":586},{"style":399},[587],{"type":50,"value":588}," withNativewind",{"type":44,"tag":135,"props":590,"children":591},{"style":383},[592],{"type":50,"value":593},"(config",{"type":44,"tag":135,"props":595,"children":596},{"style":224},[597],{"type":50,"value":598},",",{"type":44,"tag":135,"props":600,"children":601},{"style":224},[602],{"type":50,"value":257},{"type":44,"tag":135,"props":604,"children":606},{"class":137,"line":605},9,[607],{"type":44,"tag":135,"props":608,"children":609},{"style":142},[610],{"type":50,"value":611},"  \u002F\u002F inline variables break PlatformColor in CSS variables\n",{"type":44,"tag":135,"props":613,"children":615},{"class":137,"line":614},10,[616,622,626,632],{"type":44,"tag":135,"props":617,"children":619},{"style":618},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[620],{"type":50,"value":621},"  inlineVariables",{"type":44,"tag":135,"props":623,"children":624},{"style":224},[625],{"type":50,"value":252},{"type":44,"tag":135,"props":627,"children":629},{"style":628},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[630],{"type":50,"value":631}," false",{"type":44,"tag":135,"props":633,"children":634},{"style":224},[635],{"type":50,"value":636},",\n",{"type":44,"tag":135,"props":638,"children":640},{"class":137,"line":639},11,[641],{"type":44,"tag":135,"props":642,"children":643},{"style":142},[644],{"type":50,"value":645},"  \u002F\u002F We add className support manually\n",{"type":44,"tag":135,"props":647,"children":649},{"class":137,"line":648},12,[650,655,659,663],{"type":44,"tag":135,"props":651,"children":652},{"style":618},[653],{"type":50,"value":654},"  globalClassNamePolyfill",{"type":44,"tag":135,"props":656,"children":657},{"style":224},[658],{"type":50,"value":252},{"type":44,"tag":135,"props":660,"children":661},{"style":628},[662],{"type":50,"value":631},{"type":44,"tag":135,"props":664,"children":665},{"style":224},[666],{"type":50,"value":636},{"type":44,"tag":135,"props":668,"children":670},{"class":137,"line":669},13,[671,675,679],{"type":44,"tag":135,"props":672,"children":673},{"style":224},[674],{"type":50,"value":391},{"type":44,"tag":135,"props":676,"children":677},{"style":383},[678],{"type":50,"value":425},{"type":44,"tag":135,"props":680,"children":681},{"style":224},[682],{"type":50,"value":430},{"type":44,"tag":333,"props":684,"children":686},{"id":685},"postcss-config",[687],{"type":50,"value":688},"PostCSS Config",{"type":44,"tag":53,"props":690,"children":691},{},[692,694,700],{"type":50,"value":693},"Create ",{"type":44,"tag":131,"props":695,"children":697},{"className":696},[],[698],{"type":50,"value":699},"postcss.config.mjs",{"type":50,"value":252},{"type":44,"tag":123,"props":702,"children":704},{"className":353,"code":703,"language":355,"meta":128,"style":128},"\u002F\u002F postcss.config.mjs\nexport default {\n  plugins: {\n    \"@tailwindcss\u002Fpostcss\": {},\n  },\n};\n",[705],{"type":44,"tag":131,"props":706,"children":707},{"__ignoreMap":128},[708,716,733,749,773,781],{"type":44,"tag":135,"props":709,"children":710},{"class":137,"line":138},[711],{"type":44,"tag":135,"props":712,"children":713},{"style":142},[714],{"type":50,"value":715},"\u002F\u002F postcss.config.mjs\n",{"type":44,"tag":135,"props":717,"children":718},{"class":137,"line":148},[719,724,729],{"type":44,"tag":135,"props":720,"children":721},{"style":503},[722],{"type":50,"value":723},"export",{"type":44,"tag":135,"props":725,"children":726},{"style":503},[727],{"type":50,"value":728}," default",{"type":44,"tag":135,"props":730,"children":731},{"style":224},[732],{"type":50,"value":257},{"type":44,"tag":135,"props":734,"children":735},{"class":137,"line":230},[736,741,745],{"type":44,"tag":135,"props":737,"children":738},{"style":618},[739],{"type":50,"value":740},"  plugins",{"type":44,"tag":135,"props":742,"children":743},{"style":224},[744],{"type":50,"value":252},{"type":44,"tag":135,"props":746,"children":747},{"style":224},[748],{"type":50,"value":257},{"type":44,"tag":135,"props":750,"children":751},{"class":137,"line":260},[752,756,760,764,768],{"type":44,"tag":135,"props":753,"children":754},{"style":224},[755],{"type":50,"value":266},{"type":44,"tag":135,"props":757,"children":758},{"style":618},[759],{"type":50,"value":113},{"type":44,"tag":135,"props":761,"children":762},{"style":224},[763],{"type":50,"value":247},{"type":44,"tag":135,"props":765,"children":766},{"style":224},[767],{"type":50,"value":252},{"type":44,"tag":135,"props":769,"children":770},{"style":224},[771],{"type":50,"value":772}," {},\n",{"type":44,"tag":135,"props":774,"children":775},{"class":137,"line":297},[776],{"type":44,"tag":135,"props":777,"children":778},{"style":224},[779],{"type":50,"value":780},"  },\n",{"type":44,"tag":135,"props":782,"children":783},{"class":137,"line":306},[784],{"type":44,"tag":135,"props":785,"children":786},{"style":224},[787],{"type":50,"value":788},"};\n",{"type":44,"tag":333,"props":790,"children":792},{"id":791},"global-css",[793],{"type":50,"value":794},"Global CSS",{"type":44,"tag":53,"props":796,"children":797},{},[798,799,805],{"type":50,"value":693},{"type":44,"tag":131,"props":800,"children":802},{"className":801},[],[803],{"type":50,"value":804},"src\u002Fglobal.css",{"type":50,"value":252},{"type":44,"tag":123,"props":807,"children":811},{"className":808,"code":809,"language":810,"meta":128,"style":128},"language-css shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","@import \"tailwindcss\u002Ftheme.css\" layer(theme);\n@import \"tailwindcss\u002Fpreflight.css\" layer(base);\n@import \"tailwindcss\u002Futilities.css\";\n\n\u002F* Platform-specific font families *\u002F\n@media android {\n  :root {\n    --font-mono: monospace;\n    --font-rounded: normal;\n    --font-serif: serif;\n    --font-sans: normal;\n  }\n}\n\n@media ios {\n  :root {\n    --font-mono: ui-monospace;\n    --font-serif: ui-serif;\n    --font-sans: system-ui;\n    --font-rounded: ui-rounded;\n  }\n}\n","css",[812],{"type":44,"tag":131,"props":813,"children":814},{"__ignoreMap":128},[815,855,892,916,923,931,948,964,985,1006,1027,1047,1054,1061,1069,1086,1102,1123,1144,1165,1186,1194],{"type":44,"tag":135,"props":816,"children":817},{"class":137,"line":138},[818,823,827,832,836,841,845,850],{"type":44,"tag":135,"props":819,"children":820},{"style":503},[821],{"type":50,"value":822},"@import",{"type":44,"tag":135,"props":824,"children":825},{"style":224},[826],{"type":50,"value":284},{"type":44,"tag":135,"props":828,"children":829},{"style":158},[830],{"type":50,"value":831},"tailwindcss\u002Ftheme.css",{"type":44,"tag":135,"props":833,"children":834},{"style":224},[835],{"type":50,"value":247},{"type":44,"tag":135,"props":837,"children":838},{"style":383},[839],{"type":50,"value":840}," layer",{"type":44,"tag":135,"props":842,"children":843},{"style":224},[844],{"type":50,"value":407},{"type":44,"tag":135,"props":846,"children":847},{"style":383},[848],{"type":50,"value":849},"theme",{"type":44,"tag":135,"props":851,"children":852},{"style":224},[853],{"type":50,"value":854},");\n",{"type":44,"tag":135,"props":856,"children":857},{"class":137,"line":148},[858,862,866,871,875,879,883,888],{"type":44,"tag":135,"props":859,"children":860},{"style":503},[861],{"type":50,"value":822},{"type":44,"tag":135,"props":863,"children":864},{"style":224},[865],{"type":50,"value":284},{"type":44,"tag":135,"props":867,"children":868},{"style":158},[869],{"type":50,"value":870},"tailwindcss\u002Fpreflight.css",{"type":44,"tag":135,"props":872,"children":873},{"style":224},[874],{"type":50,"value":247},{"type":44,"tag":135,"props":876,"children":877},{"style":383},[878],{"type":50,"value":840},{"type":44,"tag":135,"props":880,"children":881},{"style":224},[882],{"type":50,"value":407},{"type":44,"tag":135,"props":884,"children":885},{"style":383},[886],{"type":50,"value":887},"base",{"type":44,"tag":135,"props":889,"children":890},{"style":224},[891],{"type":50,"value":854},{"type":44,"tag":135,"props":893,"children":894},{"class":137,"line":230},[895,899,903,908,912],{"type":44,"tag":135,"props":896,"children":897},{"style":503},[898],{"type":50,"value":822},{"type":44,"tag":135,"props":900,"children":901},{"style":224},[902],{"type":50,"value":284},{"type":44,"tag":135,"props":904,"children":905},{"style":158},[906],{"type":50,"value":907},"tailwindcss\u002Futilities.css",{"type":44,"tag":135,"props":909,"children":910},{"style":224},[911],{"type":50,"value":247},{"type":44,"tag":135,"props":913,"children":914},{"style":224},[915],{"type":50,"value":430},{"type":44,"tag":135,"props":917,"children":918},{"class":137,"line":260},[919],{"type":44,"tag":135,"props":920,"children":921},{"emptyLinePlaceholder":489},[922],{"type":50,"value":492},{"type":44,"tag":135,"props":924,"children":925},{"class":137,"line":297},[926],{"type":44,"tag":135,"props":927,"children":928},{"style":142},[929],{"type":50,"value":930},"\u002F* Platform-specific font families *\u002F\n",{"type":44,"tag":135,"props":932,"children":933},{"class":137,"line":306},[934,939,944],{"type":44,"tag":135,"props":935,"children":936},{"style":503},[937],{"type":50,"value":938},"@media",{"type":44,"tag":135,"props":940,"children":941},{"style":383},[942],{"type":50,"value":943}," android ",{"type":44,"tag":135,"props":945,"children":946},{"style":224},[947],{"type":50,"value":227},{"type":44,"tag":135,"props":949,"children":950},{"class":137,"line":565},[951,956,960],{"type":44,"tag":135,"props":952,"children":953},{"style":224},[954],{"type":50,"value":955},"  :",{"type":44,"tag":135,"props":957,"children":958},{"style":239},[959],{"type":50,"value":41},{"type":44,"tag":135,"props":961,"children":962},{"style":224},[963],{"type":50,"value":257},{"type":44,"tag":135,"props":965,"children":966},{"class":137,"line":573},[967,972,976,981],{"type":44,"tag":135,"props":968,"children":969},{"style":383},[970],{"type":50,"value":971},"    --font-mono",{"type":44,"tag":135,"props":973,"children":974},{"style":224},[975],{"type":50,"value":252},{"type":44,"tag":135,"props":977,"children":978},{"style":383},[979],{"type":50,"value":980}," monospace",{"type":44,"tag":135,"props":982,"children":983},{"style":224},[984],{"type":50,"value":430},{"type":44,"tag":135,"props":986,"children":987},{"class":137,"line":605},[988,993,997,1002],{"type":44,"tag":135,"props":989,"children":990},{"style":383},[991],{"type":50,"value":992},"    --font-rounded",{"type":44,"tag":135,"props":994,"children":995},{"style":224},[996],{"type":50,"value":252},{"type":44,"tag":135,"props":998,"children":999},{"style":383},[1000],{"type":50,"value":1001}," normal",{"type":44,"tag":135,"props":1003,"children":1004},{"style":224},[1005],{"type":50,"value":430},{"type":44,"tag":135,"props":1007,"children":1008},{"class":137,"line":614},[1009,1014,1018,1023],{"type":44,"tag":135,"props":1010,"children":1011},{"style":383},[1012],{"type":50,"value":1013},"    --font-serif",{"type":44,"tag":135,"props":1015,"children":1016},{"style":224},[1017],{"type":50,"value":252},{"type":44,"tag":135,"props":1019,"children":1020},{"style":383},[1021],{"type":50,"value":1022}," serif",{"type":44,"tag":135,"props":1024,"children":1025},{"style":224},[1026],{"type":50,"value":430},{"type":44,"tag":135,"props":1028,"children":1029},{"class":137,"line":639},[1030,1035,1039,1043],{"type":44,"tag":135,"props":1031,"children":1032},{"style":383},[1033],{"type":50,"value":1034},"    --font-sans",{"type":44,"tag":135,"props":1036,"children":1037},{"style":224},[1038],{"type":50,"value":252},{"type":44,"tag":135,"props":1040,"children":1041},{"style":383},[1042],{"type":50,"value":1001},{"type":44,"tag":135,"props":1044,"children":1045},{"style":224},[1046],{"type":50,"value":430},{"type":44,"tag":135,"props":1048,"children":1049},{"class":137,"line":648},[1050],{"type":44,"tag":135,"props":1051,"children":1052},{"style":224},[1053],{"type":50,"value":303},{"type":44,"tag":135,"props":1055,"children":1056},{"class":137,"line":669},[1057],{"type":44,"tag":135,"props":1058,"children":1059},{"style":224},[1060],{"type":50,"value":312},{"type":44,"tag":135,"props":1062,"children":1064},{"class":137,"line":1063},14,[1065],{"type":44,"tag":135,"props":1066,"children":1067},{"emptyLinePlaceholder":489},[1068],{"type":50,"value":492},{"type":44,"tag":135,"props":1070,"children":1072},{"class":137,"line":1071},15,[1073,1077,1082],{"type":44,"tag":135,"props":1074,"children":1075},{"style":503},[1076],{"type":50,"value":938},{"type":44,"tag":135,"props":1078,"children":1079},{"style":383},[1080],{"type":50,"value":1081}," ios ",{"type":44,"tag":135,"props":1083,"children":1084},{"style":224},[1085],{"type":50,"value":227},{"type":44,"tag":135,"props":1087,"children":1089},{"class":137,"line":1088},16,[1090,1094,1098],{"type":44,"tag":135,"props":1091,"children":1092},{"style":224},[1093],{"type":50,"value":955},{"type":44,"tag":135,"props":1095,"children":1096},{"style":239},[1097],{"type":50,"value":41},{"type":44,"tag":135,"props":1099,"children":1100},{"style":224},[1101],{"type":50,"value":257},{"type":44,"tag":135,"props":1103,"children":1105},{"class":137,"line":1104},17,[1106,1110,1114,1119],{"type":44,"tag":135,"props":1107,"children":1108},{"style":383},[1109],{"type":50,"value":971},{"type":44,"tag":135,"props":1111,"children":1112},{"style":224},[1113],{"type":50,"value":252},{"type":44,"tag":135,"props":1115,"children":1116},{"style":383},[1117],{"type":50,"value":1118}," ui-monospace",{"type":44,"tag":135,"props":1120,"children":1121},{"style":224},[1122],{"type":50,"value":430},{"type":44,"tag":135,"props":1124,"children":1126},{"class":137,"line":1125},18,[1127,1131,1135,1140],{"type":44,"tag":135,"props":1128,"children":1129},{"style":383},[1130],{"type":50,"value":1013},{"type":44,"tag":135,"props":1132,"children":1133},{"style":224},[1134],{"type":50,"value":252},{"type":44,"tag":135,"props":1136,"children":1137},{"style":383},[1138],{"type":50,"value":1139}," ui-serif",{"type":44,"tag":135,"props":1141,"children":1142},{"style":224},[1143],{"type":50,"value":430},{"type":44,"tag":135,"props":1145,"children":1147},{"class":137,"line":1146},19,[1148,1152,1156,1161],{"type":44,"tag":135,"props":1149,"children":1150},{"style":383},[1151],{"type":50,"value":1034},{"type":44,"tag":135,"props":1153,"children":1154},{"style":224},[1155],{"type":50,"value":252},{"type":44,"tag":135,"props":1157,"children":1158},{"style":383},[1159],{"type":50,"value":1160}," system-ui",{"type":44,"tag":135,"props":1162,"children":1163},{"style":224},[1164],{"type":50,"value":430},{"type":44,"tag":135,"props":1166,"children":1168},{"class":137,"line":1167},20,[1169,1173,1177,1182],{"type":44,"tag":135,"props":1170,"children":1171},{"style":383},[1172],{"type":50,"value":992},{"type":44,"tag":135,"props":1174,"children":1175},{"style":224},[1176],{"type":50,"value":252},{"type":44,"tag":135,"props":1178,"children":1179},{"style":383},[1180],{"type":50,"value":1181}," ui-rounded",{"type":44,"tag":135,"props":1183,"children":1184},{"style":224},[1185],{"type":50,"value":430},{"type":44,"tag":135,"props":1187,"children":1189},{"class":137,"line":1188},21,[1190],{"type":44,"tag":135,"props":1191,"children":1192},{"style":224},[1193],{"type":50,"value":303},{"type":44,"tag":135,"props":1195,"children":1197},{"class":137,"line":1196},22,[1198],{"type":44,"tag":135,"props":1199,"children":1200},{"style":224},[1201],{"type":50,"value":312},{"type":44,"tag":59,"props":1203,"children":1205},{"id":1204},"important-no-babel-config-needed",[1206],{"type":50,"value":1207},"IMPORTANT: No Babel Config Needed",{"type":44,"tag":53,"props":1209,"children":1210},{},[1211],{"type":50,"value":1212},"With Tailwind v4 and NativeWind v5, you do NOT need a babel.config.js for Tailwind. Remove any NativeWind babel presets if present:",{"type":44,"tag":123,"props":1214,"children":1216},{"className":353,"code":1215,"language":355,"meta":128,"style":128},"\u002F\u002F DELETE babel.config.js if it only contains NativeWind config\n\u002F\u002F The following is NO LONGER needed:\n\u002F\u002F module.exports = function (api) {\n\u002F\u002F   api.cache(true);\n\u002F\u002F   return {\n\u002F\u002F     presets: [\n\u002F\u002F       [\"babel-preset-expo\", { jsxImportSource: \"nativewind\" }],\n\u002F\u002F       \"nativewind\u002Fbabel\",\n\u002F\u002F     ],\n\u002F\u002F   };\n\u002F\u002F };\n",[1217],{"type":44,"tag":131,"props":1218,"children":1219},{"__ignoreMap":128},[1220,1228,1236,1244,1252,1260,1268,1276,1284,1292,1300],{"type":44,"tag":135,"props":1221,"children":1222},{"class":137,"line":138},[1223],{"type":44,"tag":135,"props":1224,"children":1225},{"style":142},[1226],{"type":50,"value":1227},"\u002F\u002F DELETE babel.config.js if it only contains NativeWind config\n",{"type":44,"tag":135,"props":1229,"children":1230},{"class":137,"line":148},[1231],{"type":44,"tag":135,"props":1232,"children":1233},{"style":142},[1234],{"type":50,"value":1235},"\u002F\u002F The following is NO LONGER needed:\n",{"type":44,"tag":135,"props":1237,"children":1238},{"class":137,"line":230},[1239],{"type":44,"tag":135,"props":1240,"children":1241},{"style":142},[1242],{"type":50,"value":1243},"\u002F\u002F module.exports = function (api) {\n",{"type":44,"tag":135,"props":1245,"children":1246},{"class":137,"line":260},[1247],{"type":44,"tag":135,"props":1248,"children":1249},{"style":142},[1250],{"type":50,"value":1251},"\u002F\u002F   api.cache(true);\n",{"type":44,"tag":135,"props":1253,"children":1254},{"class":137,"line":297},[1255],{"type":44,"tag":135,"props":1256,"children":1257},{"style":142},[1258],{"type":50,"value":1259},"\u002F\u002F   return {\n",{"type":44,"tag":135,"props":1261,"children":1262},{"class":137,"line":306},[1263],{"type":44,"tag":135,"props":1264,"children":1265},{"style":142},[1266],{"type":50,"value":1267},"\u002F\u002F     presets: [\n",{"type":44,"tag":135,"props":1269,"children":1270},{"class":137,"line":565},[1271],{"type":44,"tag":135,"props":1272,"children":1273},{"style":142},[1274],{"type":50,"value":1275},"\u002F\u002F       [\"babel-preset-expo\", { jsxImportSource: \"nativewind\" }],\n",{"type":44,"tag":135,"props":1277,"children":1278},{"class":137,"line":573},[1279],{"type":44,"tag":135,"props":1280,"children":1281},{"style":142},[1282],{"type":50,"value":1283},"\u002F\u002F       \"nativewind\u002Fbabel\",\n",{"type":44,"tag":135,"props":1285,"children":1286},{"class":137,"line":605},[1287],{"type":44,"tag":135,"props":1288,"children":1289},{"style":142},[1290],{"type":50,"value":1291},"\u002F\u002F     ],\n",{"type":44,"tag":135,"props":1293,"children":1294},{"class":137,"line":614},[1295],{"type":44,"tag":135,"props":1296,"children":1297},{"style":142},[1298],{"type":50,"value":1299},"\u002F\u002F   };\n",{"type":44,"tag":135,"props":1301,"children":1302},{"class":137,"line":639},[1303],{"type":44,"tag":135,"props":1304,"children":1305},{"style":142},[1306],{"type":50,"value":1307},"\u002F\u002F };\n",{"type":44,"tag":59,"props":1309,"children":1311},{"id":1310},"css-component-wrappers",[1312],{"type":50,"value":1313},"CSS Component Wrappers",{"type":44,"tag":53,"props":1315,"children":1316},{},[1317],{"type":50,"value":1318},"Since react-native-css requires explicit CSS element wrapping, create reusable components:",{"type":44,"tag":333,"props":1320,"children":1322},{"id":1321},"main-components-srctwindextsx",[1323,1325,1331],{"type":50,"value":1324},"Main Components (",{"type":44,"tag":131,"props":1326,"children":1328},{"className":1327},[],[1329],{"type":50,"value":1330},"src\u002Ftw\u002Findex.tsx",{"type":50,"value":425},{"type":44,"tag":123,"props":1333,"children":1337},{"className":1334,"code":1335,"language":1336,"meta":128,"style":128},"language-tsx shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import {\n  useCssElement,\n  useNativeVariable as useFunctionalVariable,\n} from \"react-native-css\";\n\nimport { Link as RouterLink } from \"expo-router\";\nimport Animated from \"react-native-reanimated\";\nimport React from \"react\";\nimport {\n  View as RNView,\n  Text as RNText,\n  Pressable as RNPressable,\n  ScrollView as RNScrollView,\n  TouchableHighlight as RNTouchableHighlight,\n  TextInput as RNTextInput,\n  StyleSheet,\n} from \"react-native\";\n\n\u002F\u002F CSS-enabled Link\nexport const Link = (\n  props: React.ComponentProps\u003Ctypeof RouterLink> & { className?: string }\n) => {\n  return useCssElement(RouterLink, props, { className: \"style\" });\n};\n\nLink.Trigger = RouterLink.Trigger;\nLink.Menu = RouterLink.Menu;\nLink.MenuAction = RouterLink.MenuAction;\nLink.Preview = RouterLink.Preview;\n\n\u002F\u002F CSS Variable hook\nexport const useCSSVariable =\n  process.env.EXPO_OS !== \"web\"\n    ? useFunctionalVariable\n    : (variable: string) => `var(${variable})`;\n\n\u002F\u002F View\nexport type ViewProps = React.ComponentProps\u003Ctypeof RNView> & {\n  className?: string;\n};\n\nexport const View = (props: ViewProps) => {\n  return useCssElement(RNView, props, { className: \"style\" });\n};\nView.displayName = \"CSS(View)\";\n\n\u002F\u002F Text\nexport const Text = (\n  props: React.ComponentProps\u003Ctypeof RNText> & { className?: string }\n) => {\n  return useCssElement(RNText, props, { className: \"style\" });\n};\nText.displayName = \"CSS(Text)\";\n\n\u002F\u002F ScrollView\nexport const ScrollView = (\n  props: React.ComponentProps\u003Ctypeof RNScrollView> & {\n    className?: string;\n    contentContainerClassName?: string;\n  }\n) => {\n  return useCssElement(RNScrollView, props, {\n    className: \"style\",\n    contentContainerClassName: \"contentContainerStyle\",\n  });\n};\nScrollView.displayName = \"CSS(ScrollView)\";\n\n\u002F\u002F Pressable\nexport const Pressable = (\n  props: React.ComponentProps\u003Ctypeof RNPressable> & { className?: string }\n) => {\n  return useCssElement(RNPressable, props, { className: \"style\" });\n};\nPressable.displayName = \"CSS(Pressable)\";\n\n\u002F\u002F TextInput\nexport const TextInput = (\n  props: React.ComponentProps\u003Ctypeof RNTextInput> & { className?: string }\n) => {\n  return useCssElement(RNTextInput, props, { className: \"style\" });\n};\nTextInput.displayName = \"CSS(TextInput)\";\n\n\u002F\u002F AnimatedScrollView\nexport const AnimatedScrollView = (\n  props: React.ComponentProps\u003Ctypeof Animated.ScrollView> & {\n    className?: string;\n    contentClassName?: string;\n    contentContainerClassName?: string;\n  }\n) => {\n  return useCssElement(Animated.ScrollView, props, {\n    className: \"style\",\n    contentClassName: \"contentContainerStyle\",\n    contentContainerClassName: \"contentContainerStyle\",\n  });\n};\n\n\u002F\u002F TouchableHighlight with underlayColor extraction\nfunction XXTouchableHighlight(\n  props: React.ComponentProps\u003Ctypeof RNTouchableHighlight>\n) {\n  const { underlayColor, ...style } = StyleSheet.flatten(props.style) || {};\n  return (\n    \u003CRNTouchableHighlight\n      underlayColor={underlayColor}\n      {...props}\n      style={style}\n    \u002F>\n  );\n}\n\nexport const TouchableHighlight = (\n  props: React.ComponentProps\u003Ctypeof RNTouchableHighlight>\n) => {\n  return useCssElement(XXTouchableHighlight, props, { className: \"style\" });\n};\nTouchableHighlight.displayName = \"CSS(TouchableHighlight)\";\n","tsx",[1338],{"type":44,"tag":131,"props":1339,"children":1340},{"__ignoreMap":128},[1341,1353,1365,1387,1415,1422,1473,1507,1540,1551,1572,1593,1614,1635,1656,1677,1689,1717,1724,1732,1758,1829,1846,1919,1927,1935,1974,2012,2050,2088,2096,2105,2127,2172,2186,2258,2266,2275,2329,2350,2358,2366,2416,2485,2493,2532,2540,2549,2574,2634,2650,2719,2727,2765,2773,2782,2807,2851,2872,2893,2901,2917,2954,2982,3011,3028,3036,3074,3082,3091,3116,3176,3192,3261,3269,3307,3315,3324,3349,3409,3425,3494,3502,3540,3548,3557,3582,3635,3655,3676,3696,3704,3720,3765,3793,3821,3849,3865,3873,3881,3890,3909,3946,3958,4041,4053,4067,4090,4107,4128,4137,4149,4157,4165,4190,4226,4242,4311,4319],{"type":44,"tag":135,"props":1342,"children":1343},{"class":137,"line":138},[1344,1349],{"type":44,"tag":135,"props":1345,"children":1346},{"style":503},[1347],{"type":50,"value":1348},"import",{"type":44,"tag":135,"props":1350,"children":1351},{"style":224},[1352],{"type":50,"value":257},{"type":44,"tag":135,"props":1354,"children":1355},{"class":137,"line":148},[1356,1361],{"type":44,"tag":135,"props":1357,"children":1358},{"style":383},[1359],{"type":50,"value":1360},"  useCssElement",{"type":44,"tag":135,"props":1362,"children":1363},{"style":224},[1364],{"type":50,"value":636},{"type":44,"tag":135,"props":1366,"children":1367},{"class":137,"line":230},[1368,1373,1378,1383],{"type":44,"tag":135,"props":1369,"children":1370},{"style":383},[1371],{"type":50,"value":1372},"  useNativeVariable",{"type":44,"tag":135,"props":1374,"children":1375},{"style":503},[1376],{"type":50,"value":1377}," as",{"type":44,"tag":135,"props":1379,"children":1380},{"style":383},[1381],{"type":50,"value":1382}," useFunctionalVariable",{"type":44,"tag":135,"props":1384,"children":1385},{"style":224},[1386],{"type":50,"value":636},{"type":44,"tag":135,"props":1388,"children":1389},{"class":137,"line":260},[1390,1394,1399,1403,1407,1411],{"type":44,"tag":135,"props":1391,"children":1392},{"style":224},[1393],{"type":50,"value":391},{"type":44,"tag":135,"props":1395,"children":1396},{"style":503},[1397],{"type":50,"value":1398}," from",{"type":44,"tag":135,"props":1400,"children":1401},{"style":224},[1402],{"type":50,"value":284},{"type":44,"tag":135,"props":1404,"children":1405},{"style":158},[1406],{"type":50,"value":93},{"type":44,"tag":135,"props":1408,"children":1409},{"style":224},[1410],{"type":50,"value":247},{"type":44,"tag":135,"props":1412,"children":1413},{"style":224},[1414],{"type":50,"value":430},{"type":44,"tag":135,"props":1416,"children":1417},{"class":137,"line":297},[1418],{"type":44,"tag":135,"props":1419,"children":1420},{"emptyLinePlaceholder":489},[1421],{"type":50,"value":492},{"type":44,"tag":135,"props":1423,"children":1424},{"class":137,"line":306},[1425,1429,1433,1438,1442,1447,1452,1456,1460,1465,1469],{"type":44,"tag":135,"props":1426,"children":1427},{"style":503},[1428],{"type":50,"value":1348},{"type":44,"tag":135,"props":1430,"children":1431},{"style":224},[1432],{"type":50,"value":380},{"type":44,"tag":135,"props":1434,"children":1435},{"style":383},[1436],{"type":50,"value":1437}," Link",{"type":44,"tag":135,"props":1439,"children":1440},{"style":503},[1441],{"type":50,"value":1377},{"type":44,"tag":135,"props":1443,"children":1444},{"style":383},[1445],{"type":50,"value":1446}," RouterLink",{"type":44,"tag":135,"props":1448,"children":1449},{"style":224},[1450],{"type":50,"value":1451}," }",{"type":44,"tag":135,"props":1453,"children":1454},{"style":503},[1455],{"type":50,"value":1398},{"type":44,"tag":135,"props":1457,"children":1458},{"style":224},[1459],{"type":50,"value":284},{"type":44,"tag":135,"props":1461,"children":1462},{"style":158},[1463],{"type":50,"value":1464},"expo-router",{"type":44,"tag":135,"props":1466,"children":1467},{"style":224},[1468],{"type":50,"value":247},{"type":44,"tag":135,"props":1470,"children":1471},{"style":224},[1472],{"type":50,"value":430},{"type":44,"tag":135,"props":1474,"children":1475},{"class":137,"line":565},[1476,1480,1485,1490,1494,1499,1503],{"type":44,"tag":135,"props":1477,"children":1478},{"style":503},[1479],{"type":50,"value":1348},{"type":44,"tag":135,"props":1481,"children":1482},{"style":383},[1483],{"type":50,"value":1484}," Animated ",{"type":44,"tag":135,"props":1486,"children":1487},{"style":503},[1488],{"type":50,"value":1489},"from",{"type":44,"tag":135,"props":1491,"children":1492},{"style":224},[1493],{"type":50,"value":284},{"type":44,"tag":135,"props":1495,"children":1496},{"style":158},[1497],{"type":50,"value":1498},"react-native-reanimated",{"type":44,"tag":135,"props":1500,"children":1501},{"style":224},[1502],{"type":50,"value":247},{"type":44,"tag":135,"props":1504,"children":1505},{"style":224},[1506],{"type":50,"value":430},{"type":44,"tag":135,"props":1508,"children":1509},{"class":137,"line":573},[1510,1514,1519,1523,1527,1532,1536],{"type":44,"tag":135,"props":1511,"children":1512},{"style":503},[1513],{"type":50,"value":1348},{"type":44,"tag":135,"props":1515,"children":1516},{"style":383},[1517],{"type":50,"value":1518}," React ",{"type":44,"tag":135,"props":1520,"children":1521},{"style":503},[1522],{"type":50,"value":1489},{"type":44,"tag":135,"props":1524,"children":1525},{"style":224},[1526],{"type":50,"value":284},{"type":44,"tag":135,"props":1528,"children":1529},{"style":158},[1530],{"type":50,"value":1531},"react",{"type":44,"tag":135,"props":1533,"children":1534},{"style":224},[1535],{"type":50,"value":247},{"type":44,"tag":135,"props":1537,"children":1538},{"style":224},[1539],{"type":50,"value":430},{"type":44,"tag":135,"props":1541,"children":1542},{"class":137,"line":605},[1543,1547],{"type":44,"tag":135,"props":1544,"children":1545},{"style":503},[1546],{"type":50,"value":1348},{"type":44,"tag":135,"props":1548,"children":1549},{"style":224},[1550],{"type":50,"value":257},{"type":44,"tag":135,"props":1552,"children":1553},{"class":137,"line":614},[1554,1559,1563,1568],{"type":44,"tag":135,"props":1555,"children":1556},{"style":383},[1557],{"type":50,"value":1558},"  View",{"type":44,"tag":135,"props":1560,"children":1561},{"style":503},[1562],{"type":50,"value":1377},{"type":44,"tag":135,"props":1564,"children":1565},{"style":383},[1566],{"type":50,"value":1567}," RNView",{"type":44,"tag":135,"props":1569,"children":1570},{"style":224},[1571],{"type":50,"value":636},{"type":44,"tag":135,"props":1573,"children":1574},{"class":137,"line":639},[1575,1580,1584,1589],{"type":44,"tag":135,"props":1576,"children":1577},{"style":383},[1578],{"type":50,"value":1579},"  Text",{"type":44,"tag":135,"props":1581,"children":1582},{"style":503},[1583],{"type":50,"value":1377},{"type":44,"tag":135,"props":1585,"children":1586},{"style":383},[1587],{"type":50,"value":1588}," RNText",{"type":44,"tag":135,"props":1590,"children":1591},{"style":224},[1592],{"type":50,"value":636},{"type":44,"tag":135,"props":1594,"children":1595},{"class":137,"line":648},[1596,1601,1605,1610],{"type":44,"tag":135,"props":1597,"children":1598},{"style":383},[1599],{"type":50,"value":1600},"  Pressable",{"type":44,"tag":135,"props":1602,"children":1603},{"style":503},[1604],{"type":50,"value":1377},{"type":44,"tag":135,"props":1606,"children":1607},{"style":383},[1608],{"type":50,"value":1609}," RNPressable",{"type":44,"tag":135,"props":1611,"children":1612},{"style":224},[1613],{"type":50,"value":636},{"type":44,"tag":135,"props":1615,"children":1616},{"class":137,"line":669},[1617,1622,1626,1631],{"type":44,"tag":135,"props":1618,"children":1619},{"style":383},[1620],{"type":50,"value":1621},"  ScrollView",{"type":44,"tag":135,"props":1623,"children":1624},{"style":503},[1625],{"type":50,"value":1377},{"type":44,"tag":135,"props":1627,"children":1628},{"style":383},[1629],{"type":50,"value":1630}," RNScrollView",{"type":44,"tag":135,"props":1632,"children":1633},{"style":224},[1634],{"type":50,"value":636},{"type":44,"tag":135,"props":1636,"children":1637},{"class":137,"line":1063},[1638,1643,1647,1652],{"type":44,"tag":135,"props":1639,"children":1640},{"style":383},[1641],{"type":50,"value":1642},"  TouchableHighlight",{"type":44,"tag":135,"props":1644,"children":1645},{"style":503},[1646],{"type":50,"value":1377},{"type":44,"tag":135,"props":1648,"children":1649},{"style":383},[1650],{"type":50,"value":1651}," RNTouchableHighlight",{"type":44,"tag":135,"props":1653,"children":1654},{"style":224},[1655],{"type":50,"value":636},{"type":44,"tag":135,"props":1657,"children":1658},{"class":137,"line":1071},[1659,1664,1668,1673],{"type":44,"tag":135,"props":1660,"children":1661},{"style":383},[1662],{"type":50,"value":1663},"  TextInput",{"type":44,"tag":135,"props":1665,"children":1666},{"style":503},[1667],{"type":50,"value":1377},{"type":44,"tag":135,"props":1669,"children":1670},{"style":383},[1671],{"type":50,"value":1672}," RNTextInput",{"type":44,"tag":135,"props":1674,"children":1675},{"style":224},[1676],{"type":50,"value":636},{"type":44,"tag":135,"props":1678,"children":1679},{"class":137,"line":1088},[1680,1685],{"type":44,"tag":135,"props":1681,"children":1682},{"style":383},[1683],{"type":50,"value":1684},"  StyleSheet",{"type":44,"tag":135,"props":1686,"children":1687},{"style":224},[1688],{"type":50,"value":636},{"type":44,"tag":135,"props":1690,"children":1691},{"class":137,"line":1104},[1692,1696,1700,1704,1709,1713],{"type":44,"tag":135,"props":1693,"children":1694},{"style":224},[1695],{"type":50,"value":391},{"type":44,"tag":135,"props":1697,"children":1698},{"style":503},[1699],{"type":50,"value":1398},{"type":44,"tag":135,"props":1701,"children":1702},{"style":224},[1703],{"type":50,"value":284},{"type":44,"tag":135,"props":1705,"children":1706},{"style":158},[1707],{"type":50,"value":1708},"react-native",{"type":44,"tag":135,"props":1710,"children":1711},{"style":224},[1712],{"type":50,"value":247},{"type":44,"tag":135,"props":1714,"children":1715},{"style":224},[1716],{"type":50,"value":430},{"type":44,"tag":135,"props":1718,"children":1719},{"class":137,"line":1125},[1720],{"type":44,"tag":135,"props":1721,"children":1722},{"emptyLinePlaceholder":489},[1723],{"type":50,"value":492},{"type":44,"tag":135,"props":1725,"children":1726},{"class":137,"line":1146},[1727],{"type":44,"tag":135,"props":1728,"children":1729},{"style":142},[1730],{"type":50,"value":1731},"\u002F\u002F CSS-enabled Link\n",{"type":44,"tag":135,"props":1733,"children":1734},{"class":137,"line":1167},[1735,1739,1744,1749,1753],{"type":44,"tag":135,"props":1736,"children":1737},{"style":503},[1738],{"type":50,"value":723},{"type":44,"tag":135,"props":1740,"children":1741},{"style":239},[1742],{"type":50,"value":1743}," const",{"type":44,"tag":135,"props":1745,"children":1746},{"style":383},[1747],{"type":50,"value":1748}," Link ",{"type":44,"tag":135,"props":1750,"children":1751},{"style":224},[1752],{"type":50,"value":548},{"type":44,"tag":135,"props":1754,"children":1755},{"style":383},[1756],{"type":50,"value":1757}," (\n",{"type":44,"tag":135,"props":1759,"children":1760},{"class":137,"line":1188},[1761,1767,1771,1776,1781,1786,1791,1795,1800,1805,1809,1814,1819,1824],{"type":44,"tag":135,"props":1762,"children":1764},{"style":1763},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[1765],{"type":50,"value":1766},"  props",{"type":44,"tag":135,"props":1768,"children":1769},{"style":224},[1770],{"type":50,"value":252},{"type":44,"tag":135,"props":1772,"children":1773},{"style":152},[1774],{"type":50,"value":1775}," React",{"type":44,"tag":135,"props":1777,"children":1778},{"style":224},[1779],{"type":50,"value":1780},".",{"type":44,"tag":135,"props":1782,"children":1783},{"style":152},[1784],{"type":50,"value":1785},"ComponentProps",{"type":44,"tag":135,"props":1787,"children":1788},{"style":224},[1789],{"type":50,"value":1790},"\u003Ctypeof",{"type":44,"tag":135,"props":1792,"children":1793},{"style":383},[1794],{"type":50,"value":1446},{"type":44,"tag":135,"props":1796,"children":1797},{"style":224},[1798],{"type":50,"value":1799},">",{"type":44,"tag":135,"props":1801,"children":1802},{"style":224},[1803],{"type":50,"value":1804}," &",{"type":44,"tag":135,"props":1806,"children":1807},{"style":224},[1808],{"type":50,"value":380},{"type":44,"tag":135,"props":1810,"children":1811},{"style":618},[1812],{"type":50,"value":1813}," className",{"type":44,"tag":135,"props":1815,"children":1816},{"style":224},[1817],{"type":50,"value":1818},"?:",{"type":44,"tag":135,"props":1820,"children":1821},{"style":152},[1822],{"type":50,"value":1823}," string",{"type":44,"tag":135,"props":1825,"children":1826},{"style":224},[1827],{"type":50,"value":1828}," }\n",{"type":44,"tag":135,"props":1830,"children":1831},{"class":137,"line":1196},[1832,1837,1842],{"type":44,"tag":135,"props":1833,"children":1834},{"style":383},[1835],{"type":50,"value":1836},") ",{"type":44,"tag":135,"props":1838,"children":1839},{"style":239},[1840],{"type":50,"value":1841},"=>",{"type":44,"tag":135,"props":1843,"children":1844},{"style":224},[1845],{"type":50,"value":257},{"type":44,"tag":135,"props":1847,"children":1849},{"class":137,"line":1848},23,[1850,1855,1860,1864,1869,1873,1878,1882,1886,1890,1894,1898,1903,1907,1911,1915],{"type":44,"tag":135,"props":1851,"children":1852},{"style":503},[1853],{"type":50,"value":1854},"  return",{"type":44,"tag":135,"props":1856,"children":1857},{"style":399},[1858],{"type":50,"value":1859}," useCssElement",{"type":44,"tag":135,"props":1861,"children":1862},{"style":618},[1863],{"type":50,"value":407},{"type":44,"tag":135,"props":1865,"children":1866},{"style":383},[1867],{"type":50,"value":1868},"RouterLink",{"type":44,"tag":135,"props":1870,"children":1871},{"style":224},[1872],{"type":50,"value":598},{"type":44,"tag":135,"props":1874,"children":1875},{"style":383},[1876],{"type":50,"value":1877}," props",{"type":44,"tag":135,"props":1879,"children":1880},{"style":224},[1881],{"type":50,"value":598},{"type":44,"tag":135,"props":1883,"children":1884},{"style":224},[1885],{"type":50,"value":380},{"type":44,"tag":135,"props":1887,"children":1888},{"style":618},[1889],{"type":50,"value":1813},{"type":44,"tag":135,"props":1891,"children":1892},{"style":224},[1893],{"type":50,"value":252},{"type":44,"tag":135,"props":1895,"children":1896},{"style":224},[1897],{"type":50,"value":284},{"type":44,"tag":135,"props":1899,"children":1900},{"style":158},[1901],{"type":50,"value":1902},"style",{"type":44,"tag":135,"props":1904,"children":1905},{"style":224},[1906],{"type":50,"value":247},{"type":44,"tag":135,"props":1908,"children":1909},{"style":224},[1910],{"type":50,"value":1451},{"type":44,"tag":135,"props":1912,"children":1913},{"style":618},[1914],{"type":50,"value":425},{"type":44,"tag":135,"props":1916,"children":1917},{"style":224},[1918],{"type":50,"value":430},{"type":44,"tag":135,"props":1920,"children":1922},{"class":137,"line":1921},24,[1923],{"type":44,"tag":135,"props":1924,"children":1925},{"style":224},[1926],{"type":50,"value":788},{"type":44,"tag":135,"props":1928,"children":1930},{"class":137,"line":1929},25,[1931],{"type":44,"tag":135,"props":1932,"children":1933},{"emptyLinePlaceholder":489},[1934],{"type":50,"value":492},{"type":44,"tag":135,"props":1936,"children":1938},{"class":137,"line":1937},26,[1939,1944,1948,1953,1957,1961,1965,1970],{"type":44,"tag":135,"props":1940,"children":1941},{"style":383},[1942],{"type":50,"value":1943},"Link",{"type":44,"tag":135,"props":1945,"children":1946},{"style":224},[1947],{"type":50,"value":1780},{"type":44,"tag":135,"props":1949,"children":1950},{"style":383},[1951],{"type":50,"value":1952},"Trigger ",{"type":44,"tag":135,"props":1954,"children":1955},{"style":224},[1956],{"type":50,"value":548},{"type":44,"tag":135,"props":1958,"children":1959},{"style":383},[1960],{"type":50,"value":1446},{"type":44,"tag":135,"props":1962,"children":1963},{"style":224},[1964],{"type":50,"value":1780},{"type":44,"tag":135,"props":1966,"children":1967},{"style":383},[1968],{"type":50,"value":1969},"Trigger",{"type":44,"tag":135,"props":1971,"children":1972},{"style":224},[1973],{"type":50,"value":430},{"type":44,"tag":135,"props":1975,"children":1977},{"class":137,"line":1976},27,[1978,1982,1986,1991,1995,1999,2003,2008],{"type":44,"tag":135,"props":1979,"children":1980},{"style":383},[1981],{"type":50,"value":1943},{"type":44,"tag":135,"props":1983,"children":1984},{"style":224},[1985],{"type":50,"value":1780},{"type":44,"tag":135,"props":1987,"children":1988},{"style":383},[1989],{"type":50,"value":1990},"Menu ",{"type":44,"tag":135,"props":1992,"children":1993},{"style":224},[1994],{"type":50,"value":548},{"type":44,"tag":135,"props":1996,"children":1997},{"style":383},[1998],{"type":50,"value":1446},{"type":44,"tag":135,"props":2000,"children":2001},{"style":224},[2002],{"type":50,"value":1780},{"type":44,"tag":135,"props":2004,"children":2005},{"style":383},[2006],{"type":50,"value":2007},"Menu",{"type":44,"tag":135,"props":2009,"children":2010},{"style":224},[2011],{"type":50,"value":430},{"type":44,"tag":135,"props":2013,"children":2015},{"class":137,"line":2014},28,[2016,2020,2024,2029,2033,2037,2041,2046],{"type":44,"tag":135,"props":2017,"children":2018},{"style":383},[2019],{"type":50,"value":1943},{"type":44,"tag":135,"props":2021,"children":2022},{"style":224},[2023],{"type":50,"value":1780},{"type":44,"tag":135,"props":2025,"children":2026},{"style":383},[2027],{"type":50,"value":2028},"MenuAction ",{"type":44,"tag":135,"props":2030,"children":2031},{"style":224},[2032],{"type":50,"value":548},{"type":44,"tag":135,"props":2034,"children":2035},{"style":383},[2036],{"type":50,"value":1446},{"type":44,"tag":135,"props":2038,"children":2039},{"style":224},[2040],{"type":50,"value":1780},{"type":44,"tag":135,"props":2042,"children":2043},{"style":383},[2044],{"type":50,"value":2045},"MenuAction",{"type":44,"tag":135,"props":2047,"children":2048},{"style":224},[2049],{"type":50,"value":430},{"type":44,"tag":135,"props":2051,"children":2053},{"class":137,"line":2052},29,[2054,2058,2062,2067,2071,2075,2079,2084],{"type":44,"tag":135,"props":2055,"children":2056},{"style":383},[2057],{"type":50,"value":1943},{"type":44,"tag":135,"props":2059,"children":2060},{"style":224},[2061],{"type":50,"value":1780},{"type":44,"tag":135,"props":2063,"children":2064},{"style":383},[2065],{"type":50,"value":2066},"Preview ",{"type":44,"tag":135,"props":2068,"children":2069},{"style":224},[2070],{"type":50,"value":548},{"type":44,"tag":135,"props":2072,"children":2073},{"style":383},[2074],{"type":50,"value":1446},{"type":44,"tag":135,"props":2076,"children":2077},{"style":224},[2078],{"type":50,"value":1780},{"type":44,"tag":135,"props":2080,"children":2081},{"style":383},[2082],{"type":50,"value":2083},"Preview",{"type":44,"tag":135,"props":2085,"children":2086},{"style":224},[2087],{"type":50,"value":430},{"type":44,"tag":135,"props":2089,"children":2091},{"class":137,"line":2090},30,[2092],{"type":44,"tag":135,"props":2093,"children":2094},{"emptyLinePlaceholder":489},[2095],{"type":50,"value":492},{"type":44,"tag":135,"props":2097,"children":2099},{"class":137,"line":2098},31,[2100],{"type":44,"tag":135,"props":2101,"children":2102},{"style":142},[2103],{"type":50,"value":2104},"\u002F\u002F CSS Variable hook\n",{"type":44,"tag":135,"props":2106,"children":2108},{"class":137,"line":2107},32,[2109,2113,2117,2122],{"type":44,"tag":135,"props":2110,"children":2111},{"style":503},[2112],{"type":50,"value":723},{"type":44,"tag":135,"props":2114,"children":2115},{"style":239},[2116],{"type":50,"value":1743},{"type":44,"tag":135,"props":2118,"children":2119},{"style":383},[2120],{"type":50,"value":2121}," useCSSVariable ",{"type":44,"tag":135,"props":2123,"children":2124},{"style":224},[2125],{"type":50,"value":2126},"=\n",{"type":44,"tag":135,"props":2128,"children":2130},{"class":137,"line":2129},33,[2131,2136,2140,2145,2149,2154,2159,2163,2168],{"type":44,"tag":135,"props":2132,"children":2133},{"style":383},[2134],{"type":50,"value":2135},"  process",{"type":44,"tag":135,"props":2137,"children":2138},{"style":224},[2139],{"type":50,"value":1780},{"type":44,"tag":135,"props":2141,"children":2142},{"style":383},[2143],{"type":50,"value":2144},"env",{"type":44,"tag":135,"props":2146,"children":2147},{"style":224},[2148],{"type":50,"value":1780},{"type":44,"tag":135,"props":2150,"children":2151},{"style":383},[2152],{"type":50,"value":2153},"EXPO_OS ",{"type":44,"tag":135,"props":2155,"children":2156},{"style":224},[2157],{"type":50,"value":2158},"!==",{"type":44,"tag":135,"props":2160,"children":2161},{"style":224},[2162],{"type":50,"value":284},{"type":44,"tag":135,"props":2164,"children":2165},{"style":158},[2166],{"type":50,"value":2167},"web",{"type":44,"tag":135,"props":2169,"children":2170},{"style":224},[2171],{"type":50,"value":294},{"type":44,"tag":135,"props":2173,"children":2175},{"class":137,"line":2174},34,[2176,2181],{"type":44,"tag":135,"props":2177,"children":2178},{"style":224},[2179],{"type":50,"value":2180},"    ?",{"type":44,"tag":135,"props":2182,"children":2183},{"style":383},[2184],{"type":50,"value":2185}," useFunctionalVariable\n",{"type":44,"tag":135,"props":2187,"children":2189},{"class":137,"line":2188},35,[2190,2195,2200,2205,2209,2213,2217,2222,2227,2232,2237,2241,2245,2249,2254],{"type":44,"tag":135,"props":2191,"children":2192},{"style":224},[2193],{"type":50,"value":2194},"    :",{"type":44,"tag":135,"props":2196,"children":2197},{"style":224},[2198],{"type":50,"value":2199}," (",{"type":44,"tag":135,"props":2201,"children":2202},{"style":1763},[2203],{"type":50,"value":2204},"variable",{"type":44,"tag":135,"props":2206,"children":2207},{"style":224},[2208],{"type":50,"value":252},{"type":44,"tag":135,"props":2210,"children":2211},{"style":152},[2212],{"type":50,"value":1823},{"type":44,"tag":135,"props":2214,"children":2215},{"style":224},[2216],{"type":50,"value":425},{"type":44,"tag":135,"props":2218,"children":2219},{"style":239},[2220],{"type":50,"value":2221}," =>",{"type":44,"tag":135,"props":2223,"children":2224},{"style":224},[2225],{"type":50,"value":2226}," `",{"type":44,"tag":135,"props":2228,"children":2229},{"style":158},[2230],{"type":50,"value":2231},"var(",{"type":44,"tag":135,"props":2233,"children":2234},{"style":224},[2235],{"type":50,"value":2236},"${",{"type":44,"tag":135,"props":2238,"children":2239},{"style":383},[2240],{"type":50,"value":2204},{"type":44,"tag":135,"props":2242,"children":2243},{"style":224},[2244],{"type":50,"value":391},{"type":44,"tag":135,"props":2246,"children":2247},{"style":158},[2248],{"type":50,"value":425},{"type":44,"tag":135,"props":2250,"children":2251},{"style":224},[2252],{"type":50,"value":2253},"`",{"type":44,"tag":135,"props":2255,"children":2256},{"style":224},[2257],{"type":50,"value":430},{"type":44,"tag":135,"props":2259,"children":2261},{"class":137,"line":2260},36,[2262],{"type":44,"tag":135,"props":2263,"children":2264},{"emptyLinePlaceholder":489},[2265],{"type":50,"value":492},{"type":44,"tag":135,"props":2267,"children":2269},{"class":137,"line":2268},37,[2270],{"type":44,"tag":135,"props":2271,"children":2272},{"style":142},[2273],{"type":50,"value":2274},"\u002F\u002F View\n",{"type":44,"tag":135,"props":2276,"children":2278},{"class":137,"line":2277},38,[2279,2283,2288,2293,2297,2301,2305,2309,2313,2317,2321,2325],{"type":44,"tag":135,"props":2280,"children":2281},{"style":503},[2282],{"type":50,"value":723},{"type":44,"tag":135,"props":2284,"children":2285},{"style":239},[2286],{"type":50,"value":2287}," type",{"type":44,"tag":135,"props":2289,"children":2290},{"style":152},[2291],{"type":50,"value":2292}," ViewProps",{"type":44,"tag":135,"props":2294,"children":2295},{"style":224},[2296],{"type":50,"value":396},{"type":44,"tag":135,"props":2298,"children":2299},{"style":152},[2300],{"type":50,"value":1775},{"type":44,"tag":135,"props":2302,"children":2303},{"style":224},[2304],{"type":50,"value":1780},{"type":44,"tag":135,"props":2306,"children":2307},{"style":152},[2308],{"type":50,"value":1785},{"type":44,"tag":135,"props":2310,"children":2311},{"style":224},[2312],{"type":50,"value":1790},{"type":44,"tag":135,"props":2314,"children":2315},{"style":383},[2316],{"type":50,"value":1567},{"type":44,"tag":135,"props":2318,"children":2319},{"style":224},[2320],{"type":50,"value":1799},{"type":44,"tag":135,"props":2322,"children":2323},{"style":224},[2324],{"type":50,"value":1804},{"type":44,"tag":135,"props":2326,"children":2327},{"style":224},[2328],{"type":50,"value":257},{"type":44,"tag":135,"props":2330,"children":2332},{"class":137,"line":2331},39,[2333,2338,2342,2346],{"type":44,"tag":135,"props":2334,"children":2335},{"style":618},[2336],{"type":50,"value":2337},"  className",{"type":44,"tag":135,"props":2339,"children":2340},{"style":224},[2341],{"type":50,"value":1818},{"type":44,"tag":135,"props":2343,"children":2344},{"style":152},[2345],{"type":50,"value":1823},{"type":44,"tag":135,"props":2347,"children":2348},{"style":224},[2349],{"type":50,"value":430},{"type":44,"tag":135,"props":2351,"children":2353},{"class":137,"line":2352},40,[2354],{"type":44,"tag":135,"props":2355,"children":2356},{"style":224},[2357],{"type":50,"value":788},{"type":44,"tag":135,"props":2359,"children":2361},{"class":137,"line":2360},41,[2362],{"type":44,"tag":135,"props":2363,"children":2364},{"emptyLinePlaceholder":489},[2365],{"type":50,"value":492},{"type":44,"tag":135,"props":2367,"children":2369},{"class":137,"line":2368},42,[2370,2374,2378,2383,2387,2391,2396,2400,2404,2408,2412],{"type":44,"tag":135,"props":2371,"children":2372},{"style":503},[2373],{"type":50,"value":723},{"type":44,"tag":135,"props":2375,"children":2376},{"style":239},[2377],{"type":50,"value":1743},{"type":44,"tag":135,"props":2379,"children":2380},{"style":383},[2381],{"type":50,"value":2382}," View ",{"type":44,"tag":135,"props":2384,"children":2385},{"style":224},[2386],{"type":50,"value":548},{"type":44,"tag":135,"props":2388,"children":2389},{"style":224},[2390],{"type":50,"value":2199},{"type":44,"tag":135,"props":2392,"children":2393},{"style":1763},[2394],{"type":50,"value":2395},"props",{"type":44,"tag":135,"props":2397,"children":2398},{"style":224},[2399],{"type":50,"value":252},{"type":44,"tag":135,"props":2401,"children":2402},{"style":152},[2403],{"type":50,"value":2292},{"type":44,"tag":135,"props":2405,"children":2406},{"style":224},[2407],{"type":50,"value":425},{"type":44,"tag":135,"props":2409,"children":2410},{"style":239},[2411],{"type":50,"value":2221},{"type":44,"tag":135,"props":2413,"children":2414},{"style":224},[2415],{"type":50,"value":257},{"type":44,"tag":135,"props":2417,"children":2419},{"class":137,"line":2418},43,[2420,2424,2428,2432,2437,2441,2445,2449,2453,2457,2461,2465,2469,2473,2477,2481],{"type":44,"tag":135,"props":2421,"children":2422},{"style":503},[2423],{"type":50,"value":1854},{"type":44,"tag":135,"props":2425,"children":2426},{"style":399},[2427],{"type":50,"value":1859},{"type":44,"tag":135,"props":2429,"children":2430},{"style":618},[2431],{"type":50,"value":407},{"type":44,"tag":135,"props":2433,"children":2434},{"style":383},[2435],{"type":50,"value":2436},"RNView",{"type":44,"tag":135,"props":2438,"children":2439},{"style":224},[2440],{"type":50,"value":598},{"type":44,"tag":135,"props":2442,"children":2443},{"style":383},[2444],{"type":50,"value":1877},{"type":44,"tag":135,"props":2446,"children":2447},{"style":224},[2448],{"type":50,"value":598},{"type":44,"tag":135,"props":2450,"children":2451},{"style":224},[2452],{"type":50,"value":380},{"type":44,"tag":135,"props":2454,"children":2455},{"style":618},[2456],{"type":50,"value":1813},{"type":44,"tag":135,"props":2458,"children":2459},{"style":224},[2460],{"type":50,"value":252},{"type":44,"tag":135,"props":2462,"children":2463},{"style":224},[2464],{"type":50,"value":284},{"type":44,"tag":135,"props":2466,"children":2467},{"style":158},[2468],{"type":50,"value":1902},{"type":44,"tag":135,"props":2470,"children":2471},{"style":224},[2472],{"type":50,"value":247},{"type":44,"tag":135,"props":2474,"children":2475},{"style":224},[2476],{"type":50,"value":1451},{"type":44,"tag":135,"props":2478,"children":2479},{"style":618},[2480],{"type":50,"value":425},{"type":44,"tag":135,"props":2482,"children":2483},{"style":224},[2484],{"type":50,"value":430},{"type":44,"tag":135,"props":2486,"children":2488},{"class":137,"line":2487},44,[2489],{"type":44,"tag":135,"props":2490,"children":2491},{"style":224},[2492],{"type":50,"value":788},{"type":44,"tag":135,"props":2494,"children":2496},{"class":137,"line":2495},45,[2497,2502,2506,2511,2515,2519,2524,2528],{"type":44,"tag":135,"props":2498,"children":2499},{"style":383},[2500],{"type":50,"value":2501},"View",{"type":44,"tag":135,"props":2503,"children":2504},{"style":224},[2505],{"type":50,"value":1780},{"type":44,"tag":135,"props":2507,"children":2508},{"style":383},[2509],{"type":50,"value":2510},"displayName ",{"type":44,"tag":135,"props":2512,"children":2513},{"style":224},[2514],{"type":50,"value":548},{"type":44,"tag":135,"props":2516,"children":2517},{"style":224},[2518],{"type":50,"value":284},{"type":44,"tag":135,"props":2520,"children":2521},{"style":158},[2522],{"type":50,"value":2523},"CSS(View)",{"type":44,"tag":135,"props":2525,"children":2526},{"style":224},[2527],{"type":50,"value":247},{"type":44,"tag":135,"props":2529,"children":2530},{"style":224},[2531],{"type":50,"value":430},{"type":44,"tag":135,"props":2533,"children":2535},{"class":137,"line":2534},46,[2536],{"type":44,"tag":135,"props":2537,"children":2538},{"emptyLinePlaceholder":489},[2539],{"type":50,"value":492},{"type":44,"tag":135,"props":2541,"children":2543},{"class":137,"line":2542},47,[2544],{"type":44,"tag":135,"props":2545,"children":2546},{"style":142},[2547],{"type":50,"value":2548},"\u002F\u002F Text\n",{"type":44,"tag":135,"props":2550,"children":2552},{"class":137,"line":2551},48,[2553,2557,2561,2566,2570],{"type":44,"tag":135,"props":2554,"children":2555},{"style":503},[2556],{"type":50,"value":723},{"type":44,"tag":135,"props":2558,"children":2559},{"style":239},[2560],{"type":50,"value":1743},{"type":44,"tag":135,"props":2562,"children":2563},{"style":383},[2564],{"type":50,"value":2565}," Text ",{"type":44,"tag":135,"props":2567,"children":2568},{"style":224},[2569],{"type":50,"value":548},{"type":44,"tag":135,"props":2571,"children":2572},{"style":383},[2573],{"type":50,"value":1757},{"type":44,"tag":135,"props":2575,"children":2577},{"class":137,"line":2576},49,[2578,2582,2586,2590,2594,2598,2602,2606,2610,2614,2618,2622,2626,2630],{"type":44,"tag":135,"props":2579,"children":2580},{"style":1763},[2581],{"type":50,"value":1766},{"type":44,"tag":135,"props":2583,"children":2584},{"style":224},[2585],{"type":50,"value":252},{"type":44,"tag":135,"props":2587,"children":2588},{"style":152},[2589],{"type":50,"value":1775},{"type":44,"tag":135,"props":2591,"children":2592},{"style":224},[2593],{"type":50,"value":1780},{"type":44,"tag":135,"props":2595,"children":2596},{"style":152},[2597],{"type":50,"value":1785},{"type":44,"tag":135,"props":2599,"children":2600},{"style":224},[2601],{"type":50,"value":1790},{"type":44,"tag":135,"props":2603,"children":2604},{"style":383},[2605],{"type":50,"value":1588},{"type":44,"tag":135,"props":2607,"children":2608},{"style":224},[2609],{"type":50,"value":1799},{"type":44,"tag":135,"props":2611,"children":2612},{"style":224},[2613],{"type":50,"value":1804},{"type":44,"tag":135,"props":2615,"children":2616},{"style":224},[2617],{"type":50,"value":380},{"type":44,"tag":135,"props":2619,"children":2620},{"style":618},[2621],{"type":50,"value":1813},{"type":44,"tag":135,"props":2623,"children":2624},{"style":224},[2625],{"type":50,"value":1818},{"type":44,"tag":135,"props":2627,"children":2628},{"style":152},[2629],{"type":50,"value":1823},{"type":44,"tag":135,"props":2631,"children":2632},{"style":224},[2633],{"type":50,"value":1828},{"type":44,"tag":135,"props":2635,"children":2637},{"class":137,"line":2636},50,[2638,2642,2646],{"type":44,"tag":135,"props":2639,"children":2640},{"style":383},[2641],{"type":50,"value":1836},{"type":44,"tag":135,"props":2643,"children":2644},{"style":239},[2645],{"type":50,"value":1841},{"type":44,"tag":135,"props":2647,"children":2648},{"style":224},[2649],{"type":50,"value":257},{"type":44,"tag":135,"props":2651,"children":2653},{"class":137,"line":2652},51,[2654,2658,2662,2666,2671,2675,2679,2683,2687,2691,2695,2699,2703,2707,2711,2715],{"type":44,"tag":135,"props":2655,"children":2656},{"style":503},[2657],{"type":50,"value":1854},{"type":44,"tag":135,"props":2659,"children":2660},{"style":399},[2661],{"type":50,"value":1859},{"type":44,"tag":135,"props":2663,"children":2664},{"style":618},[2665],{"type":50,"value":407},{"type":44,"tag":135,"props":2667,"children":2668},{"style":383},[2669],{"type":50,"value":2670},"RNText",{"type":44,"tag":135,"props":2672,"children":2673},{"style":224},[2674],{"type":50,"value":598},{"type":44,"tag":135,"props":2676,"children":2677},{"style":383},[2678],{"type":50,"value":1877},{"type":44,"tag":135,"props":2680,"children":2681},{"style":224},[2682],{"type":50,"value":598},{"type":44,"tag":135,"props":2684,"children":2685},{"style":224},[2686],{"type":50,"value":380},{"type":44,"tag":135,"props":2688,"children":2689},{"style":618},[2690],{"type":50,"value":1813},{"type":44,"tag":135,"props":2692,"children":2693},{"style":224},[2694],{"type":50,"value":252},{"type":44,"tag":135,"props":2696,"children":2697},{"style":224},[2698],{"type":50,"value":284},{"type":44,"tag":135,"props":2700,"children":2701},{"style":158},[2702],{"type":50,"value":1902},{"type":44,"tag":135,"props":2704,"children":2705},{"style":224},[2706],{"type":50,"value":247},{"type":44,"tag":135,"props":2708,"children":2709},{"style":224},[2710],{"type":50,"value":1451},{"type":44,"tag":135,"props":2712,"children":2713},{"style":618},[2714],{"type":50,"value":425},{"type":44,"tag":135,"props":2716,"children":2717},{"style":224},[2718],{"type":50,"value":430},{"type":44,"tag":135,"props":2720,"children":2722},{"class":137,"line":2721},52,[2723],{"type":44,"tag":135,"props":2724,"children":2725},{"style":224},[2726],{"type":50,"value":788},{"type":44,"tag":135,"props":2728,"children":2730},{"class":137,"line":2729},53,[2731,2736,2740,2744,2748,2752,2757,2761],{"type":44,"tag":135,"props":2732,"children":2733},{"style":383},[2734],{"type":50,"value":2735},"Text",{"type":44,"tag":135,"props":2737,"children":2738},{"style":224},[2739],{"type":50,"value":1780},{"type":44,"tag":135,"props":2741,"children":2742},{"style":383},[2743],{"type":50,"value":2510},{"type":44,"tag":135,"props":2745,"children":2746},{"style":224},[2747],{"type":50,"value":548},{"type":44,"tag":135,"props":2749,"children":2750},{"style":224},[2751],{"type":50,"value":284},{"type":44,"tag":135,"props":2753,"children":2754},{"style":158},[2755],{"type":50,"value":2756},"CSS(Text)",{"type":44,"tag":135,"props":2758,"children":2759},{"style":224},[2760],{"type":50,"value":247},{"type":44,"tag":135,"props":2762,"children":2763},{"style":224},[2764],{"type":50,"value":430},{"type":44,"tag":135,"props":2766,"children":2768},{"class":137,"line":2767},54,[2769],{"type":44,"tag":135,"props":2770,"children":2771},{"emptyLinePlaceholder":489},[2772],{"type":50,"value":492},{"type":44,"tag":135,"props":2774,"children":2776},{"class":137,"line":2775},55,[2777],{"type":44,"tag":135,"props":2778,"children":2779},{"style":142},[2780],{"type":50,"value":2781},"\u002F\u002F ScrollView\n",{"type":44,"tag":135,"props":2783,"children":2785},{"class":137,"line":2784},56,[2786,2790,2794,2799,2803],{"type":44,"tag":135,"props":2787,"children":2788},{"style":503},[2789],{"type":50,"value":723},{"type":44,"tag":135,"props":2791,"children":2792},{"style":239},[2793],{"type":50,"value":1743},{"type":44,"tag":135,"props":2795,"children":2796},{"style":383},[2797],{"type":50,"value":2798}," ScrollView ",{"type":44,"tag":135,"props":2800,"children":2801},{"style":224},[2802],{"type":50,"value":548},{"type":44,"tag":135,"props":2804,"children":2805},{"style":383},[2806],{"type":50,"value":1757},{"type":44,"tag":135,"props":2808,"children":2810},{"class":137,"line":2809},57,[2811,2815,2819,2823,2827,2831,2835,2839,2843,2847],{"type":44,"tag":135,"props":2812,"children":2813},{"style":1763},[2814],{"type":50,"value":1766},{"type":44,"tag":135,"props":2816,"children":2817},{"style":224},[2818],{"type":50,"value":252},{"type":44,"tag":135,"props":2820,"children":2821},{"style":152},[2822],{"type":50,"value":1775},{"type":44,"tag":135,"props":2824,"children":2825},{"style":224},[2826],{"type":50,"value":1780},{"type":44,"tag":135,"props":2828,"children":2829},{"style":152},[2830],{"type":50,"value":1785},{"type":44,"tag":135,"props":2832,"children":2833},{"style":224},[2834],{"type":50,"value":1790},{"type":44,"tag":135,"props":2836,"children":2837},{"style":383},[2838],{"type":50,"value":1630},{"type":44,"tag":135,"props":2840,"children":2841},{"style":224},[2842],{"type":50,"value":1799},{"type":44,"tag":135,"props":2844,"children":2845},{"style":224},[2846],{"type":50,"value":1804},{"type":44,"tag":135,"props":2848,"children":2849},{"style":224},[2850],{"type":50,"value":257},{"type":44,"tag":135,"props":2852,"children":2854},{"class":137,"line":2853},58,[2855,2860,2864,2868],{"type":44,"tag":135,"props":2856,"children":2857},{"style":618},[2858],{"type":50,"value":2859},"    className",{"type":44,"tag":135,"props":2861,"children":2862},{"style":224},[2863],{"type":50,"value":1818},{"type":44,"tag":135,"props":2865,"children":2866},{"style":152},[2867],{"type":50,"value":1823},{"type":44,"tag":135,"props":2869,"children":2870},{"style":224},[2871],{"type":50,"value":430},{"type":44,"tag":135,"props":2873,"children":2875},{"class":137,"line":2874},59,[2876,2881,2885,2889],{"type":44,"tag":135,"props":2877,"children":2878},{"style":618},[2879],{"type":50,"value":2880},"    contentContainerClassName",{"type":44,"tag":135,"props":2882,"children":2883},{"style":224},[2884],{"type":50,"value":1818},{"type":44,"tag":135,"props":2886,"children":2887},{"style":152},[2888],{"type":50,"value":1823},{"type":44,"tag":135,"props":2890,"children":2891},{"style":224},[2892],{"type":50,"value":430},{"type":44,"tag":135,"props":2894,"children":2896},{"class":137,"line":2895},60,[2897],{"type":44,"tag":135,"props":2898,"children":2899},{"style":224},[2900],{"type":50,"value":303},{"type":44,"tag":135,"props":2902,"children":2904},{"class":137,"line":2903},61,[2905,2909,2913],{"type":44,"tag":135,"props":2906,"children":2907},{"style":383},[2908],{"type":50,"value":1836},{"type":44,"tag":135,"props":2910,"children":2911},{"style":239},[2912],{"type":50,"value":1841},{"type":44,"tag":135,"props":2914,"children":2915},{"style":224},[2916],{"type":50,"value":257},{"type":44,"tag":135,"props":2918,"children":2920},{"class":137,"line":2919},62,[2921,2925,2929,2933,2938,2942,2946,2950],{"type":44,"tag":135,"props":2922,"children":2923},{"style":503},[2924],{"type":50,"value":1854},{"type":44,"tag":135,"props":2926,"children":2927},{"style":399},[2928],{"type":50,"value":1859},{"type":44,"tag":135,"props":2930,"children":2931},{"style":618},[2932],{"type":50,"value":407},{"type":44,"tag":135,"props":2934,"children":2935},{"style":383},[2936],{"type":50,"value":2937},"RNScrollView",{"type":44,"tag":135,"props":2939,"children":2940},{"style":224},[2941],{"type":50,"value":598},{"type":44,"tag":135,"props":2943,"children":2944},{"style":383},[2945],{"type":50,"value":1877},{"type":44,"tag":135,"props":2947,"children":2948},{"style":224},[2949],{"type":50,"value":598},{"type":44,"tag":135,"props":2951,"children":2952},{"style":224},[2953],{"type":50,"value":257},{"type":44,"tag":135,"props":2955,"children":2957},{"class":137,"line":2956},63,[2958,2962,2966,2970,2974,2978],{"type":44,"tag":135,"props":2959,"children":2960},{"style":618},[2961],{"type":50,"value":2859},{"type":44,"tag":135,"props":2963,"children":2964},{"style":224},[2965],{"type":50,"value":252},{"type":44,"tag":135,"props":2967,"children":2968},{"style":224},[2969],{"type":50,"value":284},{"type":44,"tag":135,"props":2971,"children":2972},{"style":158},[2973],{"type":50,"value":1902},{"type":44,"tag":135,"props":2975,"children":2976},{"style":224},[2977],{"type":50,"value":247},{"type":44,"tag":135,"props":2979,"children":2980},{"style":224},[2981],{"type":50,"value":636},{"type":44,"tag":135,"props":2983,"children":2985},{"class":137,"line":2984},64,[2986,2990,2994,2998,3003,3007],{"type":44,"tag":135,"props":2987,"children":2988},{"style":618},[2989],{"type":50,"value":2880},{"type":44,"tag":135,"props":2991,"children":2992},{"style":224},[2993],{"type":50,"value":252},{"type":44,"tag":135,"props":2995,"children":2996},{"style":224},[2997],{"type":50,"value":284},{"type":44,"tag":135,"props":2999,"children":3000},{"style":158},[3001],{"type":50,"value":3002},"contentContainerStyle",{"type":44,"tag":135,"props":3004,"children":3005},{"style":224},[3006],{"type":50,"value":247},{"type":44,"tag":135,"props":3008,"children":3009},{"style":224},[3010],{"type":50,"value":636},{"type":44,"tag":135,"props":3012,"children":3014},{"class":137,"line":3013},65,[3015,3020,3024],{"type":44,"tag":135,"props":3016,"children":3017},{"style":224},[3018],{"type":50,"value":3019},"  }",{"type":44,"tag":135,"props":3021,"children":3022},{"style":618},[3023],{"type":50,"value":425},{"type":44,"tag":135,"props":3025,"children":3026},{"style":224},[3027],{"type":50,"value":430},{"type":44,"tag":135,"props":3029,"children":3031},{"class":137,"line":3030},66,[3032],{"type":44,"tag":135,"props":3033,"children":3034},{"style":224},[3035],{"type":50,"value":788},{"type":44,"tag":135,"props":3037,"children":3039},{"class":137,"line":3038},67,[3040,3045,3049,3053,3057,3061,3066,3070],{"type":44,"tag":135,"props":3041,"children":3042},{"style":383},[3043],{"type":50,"value":3044},"ScrollView",{"type":44,"tag":135,"props":3046,"children":3047},{"style":224},[3048],{"type":50,"value":1780},{"type":44,"tag":135,"props":3050,"children":3051},{"style":383},[3052],{"type":50,"value":2510},{"type":44,"tag":135,"props":3054,"children":3055},{"style":224},[3056],{"type":50,"value":548},{"type":44,"tag":135,"props":3058,"children":3059},{"style":224},[3060],{"type":50,"value":284},{"type":44,"tag":135,"props":3062,"children":3063},{"style":158},[3064],{"type":50,"value":3065},"CSS(ScrollView)",{"type":44,"tag":135,"props":3067,"children":3068},{"style":224},[3069],{"type":50,"value":247},{"type":44,"tag":135,"props":3071,"children":3072},{"style":224},[3073],{"type":50,"value":430},{"type":44,"tag":135,"props":3075,"children":3077},{"class":137,"line":3076},68,[3078],{"type":44,"tag":135,"props":3079,"children":3080},{"emptyLinePlaceholder":489},[3081],{"type":50,"value":492},{"type":44,"tag":135,"props":3083,"children":3085},{"class":137,"line":3084},69,[3086],{"type":44,"tag":135,"props":3087,"children":3088},{"style":142},[3089],{"type":50,"value":3090},"\u002F\u002F Pressable\n",{"type":44,"tag":135,"props":3092,"children":3094},{"class":137,"line":3093},70,[3095,3099,3103,3108,3112],{"type":44,"tag":135,"props":3096,"children":3097},{"style":503},[3098],{"type":50,"value":723},{"type":44,"tag":135,"props":3100,"children":3101},{"style":239},[3102],{"type":50,"value":1743},{"type":44,"tag":135,"props":3104,"children":3105},{"style":383},[3106],{"type":50,"value":3107}," Pressable ",{"type":44,"tag":135,"props":3109,"children":3110},{"style":224},[3111],{"type":50,"value":548},{"type":44,"tag":135,"props":3113,"children":3114},{"style":383},[3115],{"type":50,"value":1757},{"type":44,"tag":135,"props":3117,"children":3119},{"class":137,"line":3118},71,[3120,3124,3128,3132,3136,3140,3144,3148,3152,3156,3160,3164,3168,3172],{"type":44,"tag":135,"props":3121,"children":3122},{"style":1763},[3123],{"type":50,"value":1766},{"type":44,"tag":135,"props":3125,"children":3126},{"style":224},[3127],{"type":50,"value":252},{"type":44,"tag":135,"props":3129,"children":3130},{"style":152},[3131],{"type":50,"value":1775},{"type":44,"tag":135,"props":3133,"children":3134},{"style":224},[3135],{"type":50,"value":1780},{"type":44,"tag":135,"props":3137,"children":3138},{"style":152},[3139],{"type":50,"value":1785},{"type":44,"tag":135,"props":3141,"children":3142},{"style":224},[3143],{"type":50,"value":1790},{"type":44,"tag":135,"props":3145,"children":3146},{"style":383},[3147],{"type":50,"value":1609},{"type":44,"tag":135,"props":3149,"children":3150},{"style":224},[3151],{"type":50,"value":1799},{"type":44,"tag":135,"props":3153,"children":3154},{"style":224},[3155],{"type":50,"value":1804},{"type":44,"tag":135,"props":3157,"children":3158},{"style":224},[3159],{"type":50,"value":380},{"type":44,"tag":135,"props":3161,"children":3162},{"style":618},[3163],{"type":50,"value":1813},{"type":44,"tag":135,"props":3165,"children":3166},{"style":224},[3167],{"type":50,"value":1818},{"type":44,"tag":135,"props":3169,"children":3170},{"style":152},[3171],{"type":50,"value":1823},{"type":44,"tag":135,"props":3173,"children":3174},{"style":224},[3175],{"type":50,"value":1828},{"type":44,"tag":135,"props":3177,"children":3179},{"class":137,"line":3178},72,[3180,3184,3188],{"type":44,"tag":135,"props":3181,"children":3182},{"style":383},[3183],{"type":50,"value":1836},{"type":44,"tag":135,"props":3185,"children":3186},{"style":239},[3187],{"type":50,"value":1841},{"type":44,"tag":135,"props":3189,"children":3190},{"style":224},[3191],{"type":50,"value":257},{"type":44,"tag":135,"props":3193,"children":3195},{"class":137,"line":3194},73,[3196,3200,3204,3208,3213,3217,3221,3225,3229,3233,3237,3241,3245,3249,3253,3257],{"type":44,"tag":135,"props":3197,"children":3198},{"style":503},[3199],{"type":50,"value":1854},{"type":44,"tag":135,"props":3201,"children":3202},{"style":399},[3203],{"type":50,"value":1859},{"type":44,"tag":135,"props":3205,"children":3206},{"style":618},[3207],{"type":50,"value":407},{"type":44,"tag":135,"props":3209,"children":3210},{"style":383},[3211],{"type":50,"value":3212},"RNPressable",{"type":44,"tag":135,"props":3214,"children":3215},{"style":224},[3216],{"type":50,"value":598},{"type":44,"tag":135,"props":3218,"children":3219},{"style":383},[3220],{"type":50,"value":1877},{"type":44,"tag":135,"props":3222,"children":3223},{"style":224},[3224],{"type":50,"value":598},{"type":44,"tag":135,"props":3226,"children":3227},{"style":224},[3228],{"type":50,"value":380},{"type":44,"tag":135,"props":3230,"children":3231},{"style":618},[3232],{"type":50,"value":1813},{"type":44,"tag":135,"props":3234,"children":3235},{"style":224},[3236],{"type":50,"value":252},{"type":44,"tag":135,"props":3238,"children":3239},{"style":224},[3240],{"type":50,"value":284},{"type":44,"tag":135,"props":3242,"children":3243},{"style":158},[3244],{"type":50,"value":1902},{"type":44,"tag":135,"props":3246,"children":3247},{"style":224},[3248],{"type":50,"value":247},{"type":44,"tag":135,"props":3250,"children":3251},{"style":224},[3252],{"type":50,"value":1451},{"type":44,"tag":135,"props":3254,"children":3255},{"style":618},[3256],{"type":50,"value":425},{"type":44,"tag":135,"props":3258,"children":3259},{"style":224},[3260],{"type":50,"value":430},{"type":44,"tag":135,"props":3262,"children":3264},{"class":137,"line":3263},74,[3265],{"type":44,"tag":135,"props":3266,"children":3267},{"style":224},[3268],{"type":50,"value":788},{"type":44,"tag":135,"props":3270,"children":3272},{"class":137,"line":3271},75,[3273,3278,3282,3286,3290,3294,3299,3303],{"type":44,"tag":135,"props":3274,"children":3275},{"style":383},[3276],{"type":50,"value":3277},"Pressable",{"type":44,"tag":135,"props":3279,"children":3280},{"style":224},[3281],{"type":50,"value":1780},{"type":44,"tag":135,"props":3283,"children":3284},{"style":383},[3285],{"type":50,"value":2510},{"type":44,"tag":135,"props":3287,"children":3288},{"style":224},[3289],{"type":50,"value":548},{"type":44,"tag":135,"props":3291,"children":3292},{"style":224},[3293],{"type":50,"value":284},{"type":44,"tag":135,"props":3295,"children":3296},{"style":158},[3297],{"type":50,"value":3298},"CSS(Pressable)",{"type":44,"tag":135,"props":3300,"children":3301},{"style":224},[3302],{"type":50,"value":247},{"type":44,"tag":135,"props":3304,"children":3305},{"style":224},[3306],{"type":50,"value":430},{"type":44,"tag":135,"props":3308,"children":3310},{"class":137,"line":3309},76,[3311],{"type":44,"tag":135,"props":3312,"children":3313},{"emptyLinePlaceholder":489},[3314],{"type":50,"value":492},{"type":44,"tag":135,"props":3316,"children":3318},{"class":137,"line":3317},77,[3319],{"type":44,"tag":135,"props":3320,"children":3321},{"style":142},[3322],{"type":50,"value":3323},"\u002F\u002F TextInput\n",{"type":44,"tag":135,"props":3325,"children":3327},{"class":137,"line":3326},78,[3328,3332,3336,3341,3345],{"type":44,"tag":135,"props":3329,"children":3330},{"style":503},[3331],{"type":50,"value":723},{"type":44,"tag":135,"props":3333,"children":3334},{"style":239},[3335],{"type":50,"value":1743},{"type":44,"tag":135,"props":3337,"children":3338},{"style":383},[3339],{"type":50,"value":3340}," TextInput ",{"type":44,"tag":135,"props":3342,"children":3343},{"style":224},[3344],{"type":50,"value":548},{"type":44,"tag":135,"props":3346,"children":3347},{"style":383},[3348],{"type":50,"value":1757},{"type":44,"tag":135,"props":3350,"children":3352},{"class":137,"line":3351},79,[3353,3357,3361,3365,3369,3373,3377,3381,3385,3389,3393,3397,3401,3405],{"type":44,"tag":135,"props":3354,"children":3355},{"style":1763},[3356],{"type":50,"value":1766},{"type":44,"tag":135,"props":3358,"children":3359},{"style":224},[3360],{"type":50,"value":252},{"type":44,"tag":135,"props":3362,"children":3363},{"style":152},[3364],{"type":50,"value":1775},{"type":44,"tag":135,"props":3366,"children":3367},{"style":224},[3368],{"type":50,"value":1780},{"type":44,"tag":135,"props":3370,"children":3371},{"style":152},[3372],{"type":50,"value":1785},{"type":44,"tag":135,"props":3374,"children":3375},{"style":224},[3376],{"type":50,"value":1790},{"type":44,"tag":135,"props":3378,"children":3379},{"style":383},[3380],{"type":50,"value":1672},{"type":44,"tag":135,"props":3382,"children":3383},{"style":224},[3384],{"type":50,"value":1799},{"type":44,"tag":135,"props":3386,"children":3387},{"style":224},[3388],{"type":50,"value":1804},{"type":44,"tag":135,"props":3390,"children":3391},{"style":224},[3392],{"type":50,"value":380},{"type":44,"tag":135,"props":3394,"children":3395},{"style":618},[3396],{"type":50,"value":1813},{"type":44,"tag":135,"props":3398,"children":3399},{"style":224},[3400],{"type":50,"value":1818},{"type":44,"tag":135,"props":3402,"children":3403},{"style":152},[3404],{"type":50,"value":1823},{"type":44,"tag":135,"props":3406,"children":3407},{"style":224},[3408],{"type":50,"value":1828},{"type":44,"tag":135,"props":3410,"children":3412},{"class":137,"line":3411},80,[3413,3417,3421],{"type":44,"tag":135,"props":3414,"children":3415},{"style":383},[3416],{"type":50,"value":1836},{"type":44,"tag":135,"props":3418,"children":3419},{"style":239},[3420],{"type":50,"value":1841},{"type":44,"tag":135,"props":3422,"children":3423},{"style":224},[3424],{"type":50,"value":257},{"type":44,"tag":135,"props":3426,"children":3428},{"class":137,"line":3427},81,[3429,3433,3437,3441,3446,3450,3454,3458,3462,3466,3470,3474,3478,3482,3486,3490],{"type":44,"tag":135,"props":3430,"children":3431},{"style":503},[3432],{"type":50,"value":1854},{"type":44,"tag":135,"props":3434,"children":3435},{"style":399},[3436],{"type":50,"value":1859},{"type":44,"tag":135,"props":3438,"children":3439},{"style":618},[3440],{"type":50,"value":407},{"type":44,"tag":135,"props":3442,"children":3443},{"style":383},[3444],{"type":50,"value":3445},"RNTextInput",{"type":44,"tag":135,"props":3447,"children":3448},{"style":224},[3449],{"type":50,"value":598},{"type":44,"tag":135,"props":3451,"children":3452},{"style":383},[3453],{"type":50,"value":1877},{"type":44,"tag":135,"props":3455,"children":3456},{"style":224},[3457],{"type":50,"value":598},{"type":44,"tag":135,"props":3459,"children":3460},{"style":224},[3461],{"type":50,"value":380},{"type":44,"tag":135,"props":3463,"children":3464},{"style":618},[3465],{"type":50,"value":1813},{"type":44,"tag":135,"props":3467,"children":3468},{"style":224},[3469],{"type":50,"value":252},{"type":44,"tag":135,"props":3471,"children":3472},{"style":224},[3473],{"type":50,"value":284},{"type":44,"tag":135,"props":3475,"children":3476},{"style":158},[3477],{"type":50,"value":1902},{"type":44,"tag":135,"props":3479,"children":3480},{"style":224},[3481],{"type":50,"value":247},{"type":44,"tag":135,"props":3483,"children":3484},{"style":224},[3485],{"type":50,"value":1451},{"type":44,"tag":135,"props":3487,"children":3488},{"style":618},[3489],{"type":50,"value":425},{"type":44,"tag":135,"props":3491,"children":3492},{"style":224},[3493],{"type":50,"value":430},{"type":44,"tag":135,"props":3495,"children":3497},{"class":137,"line":3496},82,[3498],{"type":44,"tag":135,"props":3499,"children":3500},{"style":224},[3501],{"type":50,"value":788},{"type":44,"tag":135,"props":3503,"children":3505},{"class":137,"line":3504},83,[3506,3511,3515,3519,3523,3527,3532,3536],{"type":44,"tag":135,"props":3507,"children":3508},{"style":383},[3509],{"type":50,"value":3510},"TextInput",{"type":44,"tag":135,"props":3512,"children":3513},{"style":224},[3514],{"type":50,"value":1780},{"type":44,"tag":135,"props":3516,"children":3517},{"style":383},[3518],{"type":50,"value":2510},{"type":44,"tag":135,"props":3520,"children":3521},{"style":224},[3522],{"type":50,"value":548},{"type":44,"tag":135,"props":3524,"children":3525},{"style":224},[3526],{"type":50,"value":284},{"type":44,"tag":135,"props":3528,"children":3529},{"style":158},[3530],{"type":50,"value":3531},"CSS(TextInput)",{"type":44,"tag":135,"props":3533,"children":3534},{"style":224},[3535],{"type":50,"value":247},{"type":44,"tag":135,"props":3537,"children":3538},{"style":224},[3539],{"type":50,"value":430},{"type":44,"tag":135,"props":3541,"children":3543},{"class":137,"line":3542},84,[3544],{"type":44,"tag":135,"props":3545,"children":3546},{"emptyLinePlaceholder":489},[3547],{"type":50,"value":492},{"type":44,"tag":135,"props":3549,"children":3551},{"class":137,"line":3550},85,[3552],{"type":44,"tag":135,"props":3553,"children":3554},{"style":142},[3555],{"type":50,"value":3556},"\u002F\u002F AnimatedScrollView\n",{"type":44,"tag":135,"props":3558,"children":3560},{"class":137,"line":3559},86,[3561,3565,3569,3574,3578],{"type":44,"tag":135,"props":3562,"children":3563},{"style":503},[3564],{"type":50,"value":723},{"type":44,"tag":135,"props":3566,"children":3567},{"style":239},[3568],{"type":50,"value":1743},{"type":44,"tag":135,"props":3570,"children":3571},{"style":383},[3572],{"type":50,"value":3573}," AnimatedScrollView ",{"type":44,"tag":135,"props":3575,"children":3576},{"style":224},[3577],{"type":50,"value":548},{"type":44,"tag":135,"props":3579,"children":3580},{"style":383},[3581],{"type":50,"value":1757},{"type":44,"tag":135,"props":3583,"children":3585},{"class":137,"line":3584},87,[3586,3590,3594,3598,3602,3606,3610,3615,3619,3623,3627,3631],{"type":44,"tag":135,"props":3587,"children":3588},{"style":1763},[3589],{"type":50,"value":1766},{"type":44,"tag":135,"props":3591,"children":3592},{"style":224},[3593],{"type":50,"value":252},{"type":44,"tag":135,"props":3595,"children":3596},{"style":152},[3597],{"type":50,"value":1775},{"type":44,"tag":135,"props":3599,"children":3600},{"style":224},[3601],{"type":50,"value":1780},{"type":44,"tag":135,"props":3603,"children":3604},{"style":152},[3605],{"type":50,"value":1785},{"type":44,"tag":135,"props":3607,"children":3608},{"style":224},[3609],{"type":50,"value":1790},{"type":44,"tag":135,"props":3611,"children":3612},{"style":383},[3613],{"type":50,"value":3614}," Animated",{"type":44,"tag":135,"props":3616,"children":3617},{"style":224},[3618],{"type":50,"value":1780},{"type":44,"tag":135,"props":3620,"children":3621},{"style":383},[3622],{"type":50,"value":3044},{"type":44,"tag":135,"props":3624,"children":3625},{"style":224},[3626],{"type":50,"value":1799},{"type":44,"tag":135,"props":3628,"children":3629},{"style":224},[3630],{"type":50,"value":1804},{"type":44,"tag":135,"props":3632,"children":3633},{"style":224},[3634],{"type":50,"value":257},{"type":44,"tag":135,"props":3636,"children":3638},{"class":137,"line":3637},88,[3639,3643,3647,3651],{"type":44,"tag":135,"props":3640,"children":3641},{"style":618},[3642],{"type":50,"value":2859},{"type":44,"tag":135,"props":3644,"children":3645},{"style":224},[3646],{"type":50,"value":1818},{"type":44,"tag":135,"props":3648,"children":3649},{"style":152},[3650],{"type":50,"value":1823},{"type":44,"tag":135,"props":3652,"children":3653},{"style":224},[3654],{"type":50,"value":430},{"type":44,"tag":135,"props":3656,"children":3658},{"class":137,"line":3657},89,[3659,3664,3668,3672],{"type":44,"tag":135,"props":3660,"children":3661},{"style":618},[3662],{"type":50,"value":3663},"    contentClassName",{"type":44,"tag":135,"props":3665,"children":3666},{"style":224},[3667],{"type":50,"value":1818},{"type":44,"tag":135,"props":3669,"children":3670},{"style":152},[3671],{"type":50,"value":1823},{"type":44,"tag":135,"props":3673,"children":3674},{"style":224},[3675],{"type":50,"value":430},{"type":44,"tag":135,"props":3677,"children":3679},{"class":137,"line":3678},90,[3680,3684,3688,3692],{"type":44,"tag":135,"props":3681,"children":3682},{"style":618},[3683],{"type":50,"value":2880},{"type":44,"tag":135,"props":3685,"children":3686},{"style":224},[3687],{"type":50,"value":1818},{"type":44,"tag":135,"props":3689,"children":3690},{"style":152},[3691],{"type":50,"value":1823},{"type":44,"tag":135,"props":3693,"children":3694},{"style":224},[3695],{"type":50,"value":430},{"type":44,"tag":135,"props":3697,"children":3699},{"class":137,"line":3698},91,[3700],{"type":44,"tag":135,"props":3701,"children":3702},{"style":224},[3703],{"type":50,"value":303},{"type":44,"tag":135,"props":3705,"children":3707},{"class":137,"line":3706},92,[3708,3712,3716],{"type":44,"tag":135,"props":3709,"children":3710},{"style":383},[3711],{"type":50,"value":1836},{"type":44,"tag":135,"props":3713,"children":3714},{"style":239},[3715],{"type":50,"value":1841},{"type":44,"tag":135,"props":3717,"children":3718},{"style":224},[3719],{"type":50,"value":257},{"type":44,"tag":135,"props":3721,"children":3723},{"class":137,"line":3722},93,[3724,3728,3732,3736,3741,3745,3749,3753,3757,3761],{"type":44,"tag":135,"props":3725,"children":3726},{"style":503},[3727],{"type":50,"value":1854},{"type":44,"tag":135,"props":3729,"children":3730},{"style":399},[3731],{"type":50,"value":1859},{"type":44,"tag":135,"props":3733,"children":3734},{"style":618},[3735],{"type":50,"value":407},{"type":44,"tag":135,"props":3737,"children":3738},{"style":383},[3739],{"type":50,"value":3740},"Animated",{"type":44,"tag":135,"props":3742,"children":3743},{"style":224},[3744],{"type":50,"value":1780},{"type":44,"tag":135,"props":3746,"children":3747},{"style":383},[3748],{"type":50,"value":3044},{"type":44,"tag":135,"props":3750,"children":3751},{"style":224},[3752],{"type":50,"value":598},{"type":44,"tag":135,"props":3754,"children":3755},{"style":383},[3756],{"type":50,"value":1877},{"type":44,"tag":135,"props":3758,"children":3759},{"style":224},[3760],{"type":50,"value":598},{"type":44,"tag":135,"props":3762,"children":3763},{"style":224},[3764],{"type":50,"value":257},{"type":44,"tag":135,"props":3766,"children":3768},{"class":137,"line":3767},94,[3769,3773,3777,3781,3785,3789],{"type":44,"tag":135,"props":3770,"children":3771},{"style":618},[3772],{"type":50,"value":2859},{"type":44,"tag":135,"props":3774,"children":3775},{"style":224},[3776],{"type":50,"value":252},{"type":44,"tag":135,"props":3778,"children":3779},{"style":224},[3780],{"type":50,"value":284},{"type":44,"tag":135,"props":3782,"children":3783},{"style":158},[3784],{"type":50,"value":1902},{"type":44,"tag":135,"props":3786,"children":3787},{"style":224},[3788],{"type":50,"value":247},{"type":44,"tag":135,"props":3790,"children":3791},{"style":224},[3792],{"type":50,"value":636},{"type":44,"tag":135,"props":3794,"children":3796},{"class":137,"line":3795},95,[3797,3801,3805,3809,3813,3817],{"type":44,"tag":135,"props":3798,"children":3799},{"style":618},[3800],{"type":50,"value":3663},{"type":44,"tag":135,"props":3802,"children":3803},{"style":224},[3804],{"type":50,"value":252},{"type":44,"tag":135,"props":3806,"children":3807},{"style":224},[3808],{"type":50,"value":284},{"type":44,"tag":135,"props":3810,"children":3811},{"style":158},[3812],{"type":50,"value":3002},{"type":44,"tag":135,"props":3814,"children":3815},{"style":224},[3816],{"type":50,"value":247},{"type":44,"tag":135,"props":3818,"children":3819},{"style":224},[3820],{"type":50,"value":636},{"type":44,"tag":135,"props":3822,"children":3824},{"class":137,"line":3823},96,[3825,3829,3833,3837,3841,3845],{"type":44,"tag":135,"props":3826,"children":3827},{"style":618},[3828],{"type":50,"value":2880},{"type":44,"tag":135,"props":3830,"children":3831},{"style":224},[3832],{"type":50,"value":252},{"type":44,"tag":135,"props":3834,"children":3835},{"style":224},[3836],{"type":50,"value":284},{"type":44,"tag":135,"props":3838,"children":3839},{"style":158},[3840],{"type":50,"value":3002},{"type":44,"tag":135,"props":3842,"children":3843},{"style":224},[3844],{"type":50,"value":247},{"type":44,"tag":135,"props":3846,"children":3847},{"style":224},[3848],{"type":50,"value":636},{"type":44,"tag":135,"props":3850,"children":3852},{"class":137,"line":3851},97,[3853,3857,3861],{"type":44,"tag":135,"props":3854,"children":3855},{"style":224},[3856],{"type":50,"value":3019},{"type":44,"tag":135,"props":3858,"children":3859},{"style":618},[3860],{"type":50,"value":425},{"type":44,"tag":135,"props":3862,"children":3863},{"style":224},[3864],{"type":50,"value":430},{"type":44,"tag":135,"props":3866,"children":3868},{"class":137,"line":3867},98,[3869],{"type":44,"tag":135,"props":3870,"children":3871},{"style":224},[3872],{"type":50,"value":788},{"type":44,"tag":135,"props":3874,"children":3876},{"class":137,"line":3875},99,[3877],{"type":44,"tag":135,"props":3878,"children":3879},{"emptyLinePlaceholder":489},[3880],{"type":50,"value":492},{"type":44,"tag":135,"props":3882,"children":3884},{"class":137,"line":3883},100,[3885],{"type":44,"tag":135,"props":3886,"children":3887},{"style":142},[3888],{"type":50,"value":3889},"\u002F\u002F TouchableHighlight with underlayColor extraction\n",{"type":44,"tag":135,"props":3891,"children":3893},{"class":137,"line":3892},101,[3894,3899,3904],{"type":44,"tag":135,"props":3895,"children":3896},{"style":239},[3897],{"type":50,"value":3898},"function",{"type":44,"tag":135,"props":3900,"children":3901},{"style":399},[3902],{"type":50,"value":3903}," XXTouchableHighlight",{"type":44,"tag":135,"props":3905,"children":3906},{"style":224},[3907],{"type":50,"value":3908},"(\n",{"type":44,"tag":135,"props":3910,"children":3912},{"class":137,"line":3911},102,[3913,3917,3921,3925,3929,3933,3937,3941],{"type":44,"tag":135,"props":3914,"children":3915},{"style":1763},[3916],{"type":50,"value":1766},{"type":44,"tag":135,"props":3918,"children":3919},{"style":224},[3920],{"type":50,"value":252},{"type":44,"tag":135,"props":3922,"children":3923},{"style":152},[3924],{"type":50,"value":1775},{"type":44,"tag":135,"props":3926,"children":3927},{"style":224},[3928],{"type":50,"value":1780},{"type":44,"tag":135,"props":3930,"children":3931},{"style":152},[3932],{"type":50,"value":1785},{"type":44,"tag":135,"props":3934,"children":3935},{"style":224},[3936],{"type":50,"value":1790},{"type":44,"tag":135,"props":3938,"children":3939},{"style":383},[3940],{"type":50,"value":1651},{"type":44,"tag":135,"props":3942,"children":3943},{"style":224},[3944],{"type":50,"value":3945},">\n",{"type":44,"tag":135,"props":3947,"children":3949},{"class":137,"line":3948},103,[3950,3954],{"type":44,"tag":135,"props":3951,"children":3952},{"style":224},[3953],{"type":50,"value":425},{"type":44,"tag":135,"props":3955,"children":3956},{"style":224},[3957],{"type":50,"value":257},{"type":44,"tag":135,"props":3959,"children":3961},{"class":137,"line":3960},104,[3962,3967,3971,3976,3980,3985,3989,3993,3997,4002,4006,4011,4015,4019,4023,4027,4031,4036],{"type":44,"tag":135,"props":3963,"children":3964},{"style":239},[3965],{"type":50,"value":3966},"  const",{"type":44,"tag":135,"props":3968,"children":3969},{"style":224},[3970],{"type":50,"value":380},{"type":44,"tag":135,"props":3972,"children":3973},{"style":383},[3974],{"type":50,"value":3975}," underlayColor",{"type":44,"tag":135,"props":3977,"children":3978},{"style":224},[3979],{"type":50,"value":598},{"type":44,"tag":135,"props":3981,"children":3982},{"style":224},[3983],{"type":50,"value":3984}," ...",{"type":44,"tag":135,"props":3986,"children":3987},{"style":383},[3988],{"type":50,"value":1902},{"type":44,"tag":135,"props":3990,"children":3991},{"style":224},[3992],{"type":50,"value":1451},{"type":44,"tag":135,"props":3994,"children":3995},{"style":224},[3996],{"type":50,"value":396},{"type":44,"tag":135,"props":3998,"children":3999},{"style":383},[4000],{"type":50,"value":4001}," StyleSheet",{"type":44,"tag":135,"props":4003,"children":4004},{"style":224},[4005],{"type":50,"value":1780},{"type":44,"tag":135,"props":4007,"children":4008},{"style":399},[4009],{"type":50,"value":4010},"flatten",{"type":44,"tag":135,"props":4012,"children":4013},{"style":618},[4014],{"type":50,"value":407},{"type":44,"tag":135,"props":4016,"children":4017},{"style":383},[4018],{"type":50,"value":2395},{"type":44,"tag":135,"props":4020,"children":4021},{"style":224},[4022],{"type":50,"value":1780},{"type":44,"tag":135,"props":4024,"children":4025},{"style":383},[4026],{"type":50,"value":1902},{"type":44,"tag":135,"props":4028,"children":4029},{"style":618},[4030],{"type":50,"value":1836},{"type":44,"tag":135,"props":4032,"children":4033},{"style":224},[4034],{"type":50,"value":4035},"||",{"type":44,"tag":135,"props":4037,"children":4038},{"style":224},[4039],{"type":50,"value":4040}," {};\n",{"type":44,"tag":135,"props":4042,"children":4044},{"class":137,"line":4043},105,[4045,4049],{"type":44,"tag":135,"props":4046,"children":4047},{"style":503},[4048],{"type":50,"value":1854},{"type":44,"tag":135,"props":4050,"children":4051},{"style":618},[4052],{"type":50,"value":1757},{"type":44,"tag":135,"props":4054,"children":4056},{"class":137,"line":4055},106,[4057,4062],{"type":44,"tag":135,"props":4058,"children":4059},{"style":224},[4060],{"type":50,"value":4061},"    \u003C",{"type":44,"tag":135,"props":4063,"children":4064},{"style":152},[4065],{"type":50,"value":4066},"RNTouchableHighlight\n",{"type":44,"tag":135,"props":4068,"children":4070},{"class":137,"line":4069},107,[4071,4076,4081,4086],{"type":44,"tag":135,"props":4072,"children":4073},{"style":239},[4074],{"type":50,"value":4075},"      underlayColor",{"type":44,"tag":135,"props":4077,"children":4078},{"style":224},[4079],{"type":50,"value":4080},"={",{"type":44,"tag":135,"props":4082,"children":4083},{"style":383},[4084],{"type":50,"value":4085},"underlayColor",{"type":44,"tag":135,"props":4087,"children":4088},{"style":224},[4089],{"type":50,"value":312},{"type":44,"tag":135,"props":4091,"children":4093},{"class":137,"line":4092},108,[4094,4099,4103],{"type":44,"tag":135,"props":4095,"children":4096},{"style":224},[4097],{"type":50,"value":4098},"      {...",{"type":44,"tag":135,"props":4100,"children":4101},{"style":383},[4102],{"type":50,"value":2395},{"type":44,"tag":135,"props":4104,"children":4105},{"style":224},[4106],{"type":50,"value":312},{"type":44,"tag":135,"props":4108,"children":4110},{"class":137,"line":4109},109,[4111,4116,4120,4124],{"type":44,"tag":135,"props":4112,"children":4113},{"style":239},[4114],{"type":50,"value":4115},"      style",{"type":44,"tag":135,"props":4117,"children":4118},{"style":224},[4119],{"type":50,"value":4080},{"type":44,"tag":135,"props":4121,"children":4122},{"style":383},[4123],{"type":50,"value":1902},{"type":44,"tag":135,"props":4125,"children":4126},{"style":224},[4127],{"type":50,"value":312},{"type":44,"tag":135,"props":4129,"children":4131},{"class":137,"line":4130},110,[4132],{"type":44,"tag":135,"props":4133,"children":4134},{"style":224},[4135],{"type":50,"value":4136},"    \u002F>\n",{"type":44,"tag":135,"props":4138,"children":4139},{"class":137,"line":30},[4140,4145],{"type":44,"tag":135,"props":4141,"children":4142},{"style":618},[4143],{"type":50,"value":4144},"  )",{"type":44,"tag":135,"props":4146,"children":4147},{"style":224},[4148],{"type":50,"value":430},{"type":44,"tag":135,"props":4150,"children":4152},{"class":137,"line":4151},112,[4153],{"type":44,"tag":135,"props":4154,"children":4155},{"style":224},[4156],{"type":50,"value":312},{"type":44,"tag":135,"props":4158,"children":4160},{"class":137,"line":4159},113,[4161],{"type":44,"tag":135,"props":4162,"children":4163},{"emptyLinePlaceholder":489},[4164],{"type":50,"value":492},{"type":44,"tag":135,"props":4166,"children":4168},{"class":137,"line":4167},114,[4169,4173,4177,4182,4186],{"type":44,"tag":135,"props":4170,"children":4171},{"style":503},[4172],{"type":50,"value":723},{"type":44,"tag":135,"props":4174,"children":4175},{"style":239},[4176],{"type":50,"value":1743},{"type":44,"tag":135,"props":4178,"children":4179},{"style":383},[4180],{"type":50,"value":4181}," TouchableHighlight ",{"type":44,"tag":135,"props":4183,"children":4184},{"style":224},[4185],{"type":50,"value":548},{"type":44,"tag":135,"props":4187,"children":4188},{"style":383},[4189],{"type":50,"value":1757},{"type":44,"tag":135,"props":4191,"children":4193},{"class":137,"line":4192},115,[4194,4198,4202,4206,4210,4214,4218,4222],{"type":44,"tag":135,"props":4195,"children":4196},{"style":1763},[4197],{"type":50,"value":1766},{"type":44,"tag":135,"props":4199,"children":4200},{"style":224},[4201],{"type":50,"value":252},{"type":44,"tag":135,"props":4203,"children":4204},{"style":152},[4205],{"type":50,"value":1775},{"type":44,"tag":135,"props":4207,"children":4208},{"style":224},[4209],{"type":50,"value":1780},{"type":44,"tag":135,"props":4211,"children":4212},{"style":152},[4213],{"type":50,"value":1785},{"type":44,"tag":135,"props":4215,"children":4216},{"style":224},[4217],{"type":50,"value":1790},{"type":44,"tag":135,"props":4219,"children":4220},{"style":383},[4221],{"type":50,"value":1651},{"type":44,"tag":135,"props":4223,"children":4224},{"style":224},[4225],{"type":50,"value":3945},{"type":44,"tag":135,"props":4227,"children":4229},{"class":137,"line":4228},116,[4230,4234,4238],{"type":44,"tag":135,"props":4231,"children":4232},{"style":383},[4233],{"type":50,"value":1836},{"type":44,"tag":135,"props":4235,"children":4236},{"style":239},[4237],{"type":50,"value":1841},{"type":44,"tag":135,"props":4239,"children":4240},{"style":224},[4241],{"type":50,"value":257},{"type":44,"tag":135,"props":4243,"children":4245},{"class":137,"line":4244},117,[4246,4250,4254,4258,4263,4267,4271,4275,4279,4283,4287,4291,4295,4299,4303,4307],{"type":44,"tag":135,"props":4247,"children":4248},{"style":503},[4249],{"type":50,"value":1854},{"type":44,"tag":135,"props":4251,"children":4252},{"style":399},[4253],{"type":50,"value":1859},{"type":44,"tag":135,"props":4255,"children":4256},{"style":618},[4257],{"type":50,"value":407},{"type":44,"tag":135,"props":4259,"children":4260},{"style":383},[4261],{"type":50,"value":4262},"XXTouchableHighlight",{"type":44,"tag":135,"props":4264,"children":4265},{"style":224},[4266],{"type":50,"value":598},{"type":44,"tag":135,"props":4268,"children":4269},{"style":383},[4270],{"type":50,"value":1877},{"type":44,"tag":135,"props":4272,"children":4273},{"style":224},[4274],{"type":50,"value":598},{"type":44,"tag":135,"props":4276,"children":4277},{"style":224},[4278],{"type":50,"value":380},{"type":44,"tag":135,"props":4280,"children":4281},{"style":618},[4282],{"type":50,"value":1813},{"type":44,"tag":135,"props":4284,"children":4285},{"style":224},[4286],{"type":50,"value":252},{"type":44,"tag":135,"props":4288,"children":4289},{"style":224},[4290],{"type":50,"value":284},{"type":44,"tag":135,"props":4292,"children":4293},{"style":158},[4294],{"type":50,"value":1902},{"type":44,"tag":135,"props":4296,"children":4297},{"style":224},[4298],{"type":50,"value":247},{"type":44,"tag":135,"props":4300,"children":4301},{"style":224},[4302],{"type":50,"value":1451},{"type":44,"tag":135,"props":4304,"children":4305},{"style":618},[4306],{"type":50,"value":425},{"type":44,"tag":135,"props":4308,"children":4309},{"style":224},[4310],{"type":50,"value":430},{"type":44,"tag":135,"props":4312,"children":4314},{"class":137,"line":4313},118,[4315],{"type":44,"tag":135,"props":4316,"children":4317},{"style":224},[4318],{"type":50,"value":788},{"type":44,"tag":135,"props":4320,"children":4322},{"class":137,"line":4321},119,[4323,4328,4332,4336,4340,4344,4349,4353],{"type":44,"tag":135,"props":4324,"children":4325},{"style":383},[4326],{"type":50,"value":4327},"TouchableHighlight",{"type":44,"tag":135,"props":4329,"children":4330},{"style":224},[4331],{"type":50,"value":1780},{"type":44,"tag":135,"props":4333,"children":4334},{"style":383},[4335],{"type":50,"value":2510},{"type":44,"tag":135,"props":4337,"children":4338},{"style":224},[4339],{"type":50,"value":548},{"type":44,"tag":135,"props":4341,"children":4342},{"style":224},[4343],{"type":50,"value":284},{"type":44,"tag":135,"props":4345,"children":4346},{"style":158},[4347],{"type":50,"value":4348},"CSS(TouchableHighlight)",{"type":44,"tag":135,"props":4350,"children":4351},{"style":224},[4352],{"type":50,"value":247},{"type":44,"tag":135,"props":4354,"children":4355},{"style":224},[4356],{"type":50,"value":430},{"type":44,"tag":333,"props":4358,"children":4360},{"id":4359},"image-component-srctwimagetsx",[4361,4363,4369],{"type":50,"value":4362},"Image Component (",{"type":44,"tag":131,"props":4364,"children":4366},{"className":4365},[],[4367],{"type":50,"value":4368},"src\u002Ftw\u002Fimage.tsx",{"type":50,"value":425},{"type":44,"tag":123,"props":4371,"children":4373},{"className":1334,"code":4372,"language":1336,"meta":128,"style":128},"import { useCssElement } from \"react-native-css\";\nimport React from \"react\";\nimport { StyleSheet } from \"react-native\";\nimport Animated from \"react-native-reanimated\";\nimport { Image as RNImage } from \"expo-image\";\n\nconst AnimatedExpoImage = Animated.createAnimatedComponent(RNImage);\n\nexport type ImageProps = React.ComponentProps\u003Ctypeof Image>;\n\nfunction CSSImage(props: React.ComponentProps\u003Ctypeof AnimatedExpoImage>) {\n  \u002F\u002F @ts-expect-error: Remap objectFit style to contentFit property\n  const { objectFit, objectPosition, ...style } =\n    StyleSheet.flatten(props.style) || {};\n\n  return (\n    \u003CAnimatedExpoImage\n      contentFit={objectFit}\n      contentPosition={objectPosition}\n      {...props}\n      source={\n        typeof props.source === \"string\" ? { uri: props.source } : props.source\n      }\n      \u002F\u002F @ts-expect-error: Style is remapped above\n      style={style}\n    \u002F>\n  );\n}\n\nexport const Image = (\n  props: React.ComponentProps\u003Ctypeof CSSImage> & { className?: string }\n) => {\n  return useCssElement(CSSImage, props, { className: \"style\" });\n};\n\nImage.displayName = \"CSS(Image)\";\n",[4374],{"type":44,"tag":131,"props":4375,"children":4376},{"__ignoreMap":128},[4377,4416,4447,4486,4517,4567,4574,4612,4619,4664,4671,4725,4733,4779,4823,4830,4841,4853,4874,4895,4910,4923,5014,5022,5030,5049,5056,5067,5074,5081,5105,5164,5179,5247,5254,5261],{"type":44,"tag":135,"props":4378,"children":4379},{"class":137,"line":138},[4380,4384,4388,4392,4396,4400,4404,4408,4412],{"type":44,"tag":135,"props":4381,"children":4382},{"style":503},[4383],{"type":50,"value":1348},{"type":44,"tag":135,"props":4385,"children":4386},{"style":224},[4387],{"type":50,"value":380},{"type":44,"tag":135,"props":4389,"children":4390},{"style":383},[4391],{"type":50,"value":1859},{"type":44,"tag":135,"props":4393,"children":4394},{"style":224},[4395],{"type":50,"value":1451},{"type":44,"tag":135,"props":4397,"children":4398},{"style":503},[4399],{"type":50,"value":1398},{"type":44,"tag":135,"props":4401,"children":4402},{"style":224},[4403],{"type":50,"value":284},{"type":44,"tag":135,"props":4405,"children":4406},{"style":158},[4407],{"type":50,"value":93},{"type":44,"tag":135,"props":4409,"children":4410},{"style":224},[4411],{"type":50,"value":247},{"type":44,"tag":135,"props":4413,"children":4414},{"style":224},[4415],{"type":50,"value":430},{"type":44,"tag":135,"props":4417,"children":4418},{"class":137,"line":148},[4419,4423,4427,4431,4435,4439,4443],{"type":44,"tag":135,"props":4420,"children":4421},{"style":503},[4422],{"type":50,"value":1348},{"type":44,"tag":135,"props":4424,"children":4425},{"style":383},[4426],{"type":50,"value":1518},{"type":44,"tag":135,"props":4428,"children":4429},{"style":503},[4430],{"type":50,"value":1489},{"type":44,"tag":135,"props":4432,"children":4433},{"style":224},[4434],{"type":50,"value":284},{"type":44,"tag":135,"props":4436,"children":4437},{"style":158},[4438],{"type":50,"value":1531},{"type":44,"tag":135,"props":4440,"children":4441},{"style":224},[4442],{"type":50,"value":247},{"type":44,"tag":135,"props":4444,"children":4445},{"style":224},[4446],{"type":50,"value":430},{"type":44,"tag":135,"props":4448,"children":4449},{"class":137,"line":230},[4450,4454,4458,4462,4466,4470,4474,4478,4482],{"type":44,"tag":135,"props":4451,"children":4452},{"style":503},[4453],{"type":50,"value":1348},{"type":44,"tag":135,"props":4455,"children":4456},{"style":224},[4457],{"type":50,"value":380},{"type":44,"tag":135,"props":4459,"children":4460},{"style":383},[4461],{"type":50,"value":4001},{"type":44,"tag":135,"props":4463,"children":4464},{"style":224},[4465],{"type":50,"value":1451},{"type":44,"tag":135,"props":4467,"children":4468},{"style":503},[4469],{"type":50,"value":1398},{"type":44,"tag":135,"props":4471,"children":4472},{"style":224},[4473],{"type":50,"value":284},{"type":44,"tag":135,"props":4475,"children":4476},{"style":158},[4477],{"type":50,"value":1708},{"type":44,"tag":135,"props":4479,"children":4480},{"style":224},[4481],{"type":50,"value":247},{"type":44,"tag":135,"props":4483,"children":4484},{"style":224},[4485],{"type":50,"value":430},{"type":44,"tag":135,"props":4487,"children":4488},{"class":137,"line":260},[4489,4493,4497,4501,4505,4509,4513],{"type":44,"tag":135,"props":4490,"children":4491},{"style":503},[4492],{"type":50,"value":1348},{"type":44,"tag":135,"props":4494,"children":4495},{"style":383},[4496],{"type":50,"value":1484},{"type":44,"tag":135,"props":4498,"children":4499},{"style":503},[4500],{"type":50,"value":1489},{"type":44,"tag":135,"props":4502,"children":4503},{"style":224},[4504],{"type":50,"value":284},{"type":44,"tag":135,"props":4506,"children":4507},{"style":158},[4508],{"type":50,"value":1498},{"type":44,"tag":135,"props":4510,"children":4511},{"style":224},[4512],{"type":50,"value":247},{"type":44,"tag":135,"props":4514,"children":4515},{"style":224},[4516],{"type":50,"value":430},{"type":44,"tag":135,"props":4518,"children":4519},{"class":137,"line":297},[4520,4524,4528,4533,4537,4542,4546,4550,4554,4559,4563],{"type":44,"tag":135,"props":4521,"children":4522},{"style":503},[4523],{"type":50,"value":1348},{"type":44,"tag":135,"props":4525,"children":4526},{"style":224},[4527],{"type":50,"value":380},{"type":44,"tag":135,"props":4529,"children":4530},{"style":383},[4531],{"type":50,"value":4532}," Image",{"type":44,"tag":135,"props":4534,"children":4535},{"style":503},[4536],{"type":50,"value":1377},{"type":44,"tag":135,"props":4538,"children":4539},{"style":383},[4540],{"type":50,"value":4541}," RNImage",{"type":44,"tag":135,"props":4543,"children":4544},{"style":224},[4545],{"type":50,"value":1451},{"type":44,"tag":135,"props":4547,"children":4548},{"style":503},[4549],{"type":50,"value":1398},{"type":44,"tag":135,"props":4551,"children":4552},{"style":224},[4553],{"type":50,"value":284},{"type":44,"tag":135,"props":4555,"children":4556},{"style":158},[4557],{"type":50,"value":4558},"expo-image",{"type":44,"tag":135,"props":4560,"children":4561},{"style":224},[4562],{"type":50,"value":247},{"type":44,"tag":135,"props":4564,"children":4565},{"style":224},[4566],{"type":50,"value":430},{"type":44,"tag":135,"props":4568,"children":4569},{"class":137,"line":306},[4570],{"type":44,"tag":135,"props":4571,"children":4572},{"emptyLinePlaceholder":489},[4573],{"type":50,"value":492},{"type":44,"tag":135,"props":4575,"children":4576},{"class":137,"line":565},[4577,4581,4586,4590,4594,4598,4603,4608],{"type":44,"tag":135,"props":4578,"children":4579},{"style":239},[4580],{"type":50,"value":375},{"type":44,"tag":135,"props":4582,"children":4583},{"style":383},[4584],{"type":50,"value":4585}," AnimatedExpoImage ",{"type":44,"tag":135,"props":4587,"children":4588},{"style":224},[4589],{"type":50,"value":548},{"type":44,"tag":135,"props":4591,"children":4592},{"style":383},[4593],{"type":50,"value":3614},{"type":44,"tag":135,"props":4595,"children":4596},{"style":224},[4597],{"type":50,"value":1780},{"type":44,"tag":135,"props":4599,"children":4600},{"style":399},[4601],{"type":50,"value":4602},"createAnimatedComponent",{"type":44,"tag":135,"props":4604,"children":4605},{"style":383},[4606],{"type":50,"value":4607},"(RNImage)",{"type":44,"tag":135,"props":4609,"children":4610},{"style":224},[4611],{"type":50,"value":430},{"type":44,"tag":135,"props":4613,"children":4614},{"class":137,"line":573},[4615],{"type":44,"tag":135,"props":4616,"children":4617},{"emptyLinePlaceholder":489},[4618],{"type":50,"value":492},{"type":44,"tag":135,"props":4620,"children":4621},{"class":137,"line":605},[4622,4626,4630,4635,4639,4643,4647,4651,4655,4659],{"type":44,"tag":135,"props":4623,"children":4624},{"style":503},[4625],{"type":50,"value":723},{"type":44,"tag":135,"props":4627,"children":4628},{"style":239},[4629],{"type":50,"value":2287},{"type":44,"tag":135,"props":4631,"children":4632},{"style":152},[4633],{"type":50,"value":4634}," ImageProps",{"type":44,"tag":135,"props":4636,"children":4637},{"style":224},[4638],{"type":50,"value":396},{"type":44,"tag":135,"props":4640,"children":4641},{"style":152},[4642],{"type":50,"value":1775},{"type":44,"tag":135,"props":4644,"children":4645},{"style":224},[4646],{"type":50,"value":1780},{"type":44,"tag":135,"props":4648,"children":4649},{"style":152},[4650],{"type":50,"value":1785},{"type":44,"tag":135,"props":4652,"children":4653},{"style":224},[4654],{"type":50,"value":1790},{"type":44,"tag":135,"props":4656,"children":4657},{"style":383},[4658],{"type":50,"value":4532},{"type":44,"tag":135,"props":4660,"children":4661},{"style":224},[4662],{"type":50,"value":4663},">;\n",{"type":44,"tag":135,"props":4665,"children":4666},{"class":137,"line":614},[4667],{"type":44,"tag":135,"props":4668,"children":4669},{"emptyLinePlaceholder":489},[4670],{"type":50,"value":492},{"type":44,"tag":135,"props":4672,"children":4673},{"class":137,"line":639},[4674,4678,4683,4687,4691,4695,4699,4703,4707,4711,4716,4721],{"type":44,"tag":135,"props":4675,"children":4676},{"style":239},[4677],{"type":50,"value":3898},{"type":44,"tag":135,"props":4679,"children":4680},{"style":399},[4681],{"type":50,"value":4682}," CSSImage",{"type":44,"tag":135,"props":4684,"children":4685},{"style":224},[4686],{"type":50,"value":407},{"type":44,"tag":135,"props":4688,"children":4689},{"style":1763},[4690],{"type":50,"value":2395},{"type":44,"tag":135,"props":4692,"children":4693},{"style":224},[4694],{"type":50,"value":252},{"type":44,"tag":135,"props":4696,"children":4697},{"style":152},[4698],{"type":50,"value":1775},{"type":44,"tag":135,"props":4700,"children":4701},{"style":224},[4702],{"type":50,"value":1780},{"type":44,"tag":135,"props":4704,"children":4705},{"style":152},[4706],{"type":50,"value":1785},{"type":44,"tag":135,"props":4708,"children":4709},{"style":224},[4710],{"type":50,"value":1790},{"type":44,"tag":135,"props":4712,"children":4713},{"style":383},[4714],{"type":50,"value":4715}," AnimatedExpoImage",{"type":44,"tag":135,"props":4717,"children":4718},{"style":224},[4719],{"type":50,"value":4720},">)",{"type":44,"tag":135,"props":4722,"children":4723},{"style":224},[4724],{"type":50,"value":257},{"type":44,"tag":135,"props":4726,"children":4727},{"class":137,"line":648},[4728],{"type":44,"tag":135,"props":4729,"children":4730},{"style":142},[4731],{"type":50,"value":4732},"  \u002F\u002F @ts-expect-error: Remap objectFit style to contentFit property\n",{"type":44,"tag":135,"props":4734,"children":4735},{"class":137,"line":669},[4736,4740,4744,4749,4753,4758,4762,4766,4770,4774],{"type":44,"tag":135,"props":4737,"children":4738},{"style":239},[4739],{"type":50,"value":3966},{"type":44,"tag":135,"props":4741,"children":4742},{"style":224},[4743],{"type":50,"value":380},{"type":44,"tag":135,"props":4745,"children":4746},{"style":383},[4747],{"type":50,"value":4748}," objectFit",{"type":44,"tag":135,"props":4750,"children":4751},{"style":224},[4752],{"type":50,"value":598},{"type":44,"tag":135,"props":4754,"children":4755},{"style":383},[4756],{"type":50,"value":4757}," objectPosition",{"type":44,"tag":135,"props":4759,"children":4760},{"style":224},[4761],{"type":50,"value":598},{"type":44,"tag":135,"props":4763,"children":4764},{"style":224},[4765],{"type":50,"value":3984},{"type":44,"tag":135,"props":4767,"children":4768},{"style":383},[4769],{"type":50,"value":1902},{"type":44,"tag":135,"props":4771,"children":4772},{"style":224},[4773],{"type":50,"value":1451},{"type":44,"tag":135,"props":4775,"children":4776},{"style":224},[4777],{"type":50,"value":4778}," =\n",{"type":44,"tag":135,"props":4780,"children":4781},{"class":137,"line":1063},[4782,4787,4791,4795,4799,4803,4807,4811,4815,4819],{"type":44,"tag":135,"props":4783,"children":4784},{"style":383},[4785],{"type":50,"value":4786},"    StyleSheet",{"type":44,"tag":135,"props":4788,"children":4789},{"style":224},[4790],{"type":50,"value":1780},{"type":44,"tag":135,"props":4792,"children":4793},{"style":399},[4794],{"type":50,"value":4010},{"type":44,"tag":135,"props":4796,"children":4797},{"style":618},[4798],{"type":50,"value":407},{"type":44,"tag":135,"props":4800,"children":4801},{"style":383},[4802],{"type":50,"value":2395},{"type":44,"tag":135,"props":4804,"children":4805},{"style":224},[4806],{"type":50,"value":1780},{"type":44,"tag":135,"props":4808,"children":4809},{"style":383},[4810],{"type":50,"value":1902},{"type":44,"tag":135,"props":4812,"children":4813},{"style":618},[4814],{"type":50,"value":1836},{"type":44,"tag":135,"props":4816,"children":4817},{"style":224},[4818],{"type":50,"value":4035},{"type":44,"tag":135,"props":4820,"children":4821},{"style":224},[4822],{"type":50,"value":4040},{"type":44,"tag":135,"props":4824,"children":4825},{"class":137,"line":1071},[4826],{"type":44,"tag":135,"props":4827,"children":4828},{"emptyLinePlaceholder":489},[4829],{"type":50,"value":492},{"type":44,"tag":135,"props":4831,"children":4832},{"class":137,"line":1088},[4833,4837],{"type":44,"tag":135,"props":4834,"children":4835},{"style":503},[4836],{"type":50,"value":1854},{"type":44,"tag":135,"props":4838,"children":4839},{"style":618},[4840],{"type":50,"value":1757},{"type":44,"tag":135,"props":4842,"children":4843},{"class":137,"line":1104},[4844,4848],{"type":44,"tag":135,"props":4845,"children":4846},{"style":224},[4847],{"type":50,"value":4061},{"type":44,"tag":135,"props":4849,"children":4850},{"style":152},[4851],{"type":50,"value":4852},"AnimatedExpoImage\n",{"type":44,"tag":135,"props":4854,"children":4855},{"class":137,"line":1125},[4856,4861,4865,4870],{"type":44,"tag":135,"props":4857,"children":4858},{"style":239},[4859],{"type":50,"value":4860},"      contentFit",{"type":44,"tag":135,"props":4862,"children":4863},{"style":224},[4864],{"type":50,"value":4080},{"type":44,"tag":135,"props":4866,"children":4867},{"style":383},[4868],{"type":50,"value":4869},"objectFit",{"type":44,"tag":135,"props":4871,"children":4872},{"style":224},[4873],{"type":50,"value":312},{"type":44,"tag":135,"props":4875,"children":4876},{"class":137,"line":1146},[4877,4882,4886,4891],{"type":44,"tag":135,"props":4878,"children":4879},{"style":239},[4880],{"type":50,"value":4881},"      contentPosition",{"type":44,"tag":135,"props":4883,"children":4884},{"style":224},[4885],{"type":50,"value":4080},{"type":44,"tag":135,"props":4887,"children":4888},{"style":383},[4889],{"type":50,"value":4890},"objectPosition",{"type":44,"tag":135,"props":4892,"children":4893},{"style":224},[4894],{"type":50,"value":312},{"type":44,"tag":135,"props":4896,"children":4897},{"class":137,"line":1167},[4898,4902,4906],{"type":44,"tag":135,"props":4899,"children":4900},{"style":224},[4901],{"type":50,"value":4098},{"type":44,"tag":135,"props":4903,"children":4904},{"style":383},[4905],{"type":50,"value":2395},{"type":44,"tag":135,"props":4907,"children":4908},{"style":224},[4909],{"type":50,"value":312},{"type":44,"tag":135,"props":4911,"children":4912},{"class":137,"line":1188},[4913,4918],{"type":44,"tag":135,"props":4914,"children":4915},{"style":239},[4916],{"type":50,"value":4917},"      source",{"type":44,"tag":135,"props":4919,"children":4920},{"style":224},[4921],{"type":50,"value":4922},"={\n",{"type":44,"tag":135,"props":4924,"children":4925},{"class":137,"line":1196},[4926,4931,4935,4939,4944,4949,4953,4958,4962,4967,4971,4976,4980,4984,4988,4992,4996,5001,5005,5009],{"type":44,"tag":135,"props":4927,"children":4928},{"style":224},[4929],{"type":50,"value":4930},"        typeof",{"type":44,"tag":135,"props":4932,"children":4933},{"style":383},[4934],{"type":50,"value":1877},{"type":44,"tag":135,"props":4936,"children":4937},{"style":224},[4938],{"type":50,"value":1780},{"type":44,"tag":135,"props":4940,"children":4941},{"style":383},[4942],{"type":50,"value":4943},"source ",{"type":44,"tag":135,"props":4945,"children":4946},{"style":224},[4947],{"type":50,"value":4948},"===",{"type":44,"tag":135,"props":4950,"children":4951},{"style":224},[4952],{"type":50,"value":284},{"type":44,"tag":135,"props":4954,"children":4955},{"style":158},[4956],{"type":50,"value":4957},"string",{"type":44,"tag":135,"props":4959,"children":4960},{"style":224},[4961],{"type":50,"value":247},{"type":44,"tag":135,"props":4963,"children":4964},{"style":224},[4965],{"type":50,"value":4966}," ?",{"type":44,"tag":135,"props":4968,"children":4969},{"style":224},[4970],{"type":50,"value":380},{"type":44,"tag":135,"props":4972,"children":4973},{"style":618},[4974],{"type":50,"value":4975}," uri",{"type":44,"tag":135,"props":4977,"children":4978},{"style":224},[4979],{"type":50,"value":252},{"type":44,"tag":135,"props":4981,"children":4982},{"style":383},[4983],{"type":50,"value":1877},{"type":44,"tag":135,"props":4985,"children":4986},{"style":224},[4987],{"type":50,"value":1780},{"type":44,"tag":135,"props":4989,"children":4990},{"style":383},[4991],{"type":50,"value":4943},{"type":44,"tag":135,"props":4993,"children":4994},{"style":224},[4995],{"type":50,"value":391},{"type":44,"tag":135,"props":4997,"children":4998},{"style":224},[4999],{"type":50,"value":5000}," :",{"type":44,"tag":135,"props":5002,"children":5003},{"style":383},[5004],{"type":50,"value":1877},{"type":44,"tag":135,"props":5006,"children":5007},{"style":224},[5008],{"type":50,"value":1780},{"type":44,"tag":135,"props":5010,"children":5011},{"style":383},[5012],{"type":50,"value":5013},"source\n",{"type":44,"tag":135,"props":5015,"children":5016},{"class":137,"line":1848},[5017],{"type":44,"tag":135,"props":5018,"children":5019},{"style":224},[5020],{"type":50,"value":5021},"      }\n",{"type":44,"tag":135,"props":5023,"children":5024},{"class":137,"line":1921},[5025],{"type":44,"tag":135,"props":5026,"children":5027},{"style":142},[5028],{"type":50,"value":5029},"      \u002F\u002F @ts-expect-error: Style is remapped above\n",{"type":44,"tag":135,"props":5031,"children":5032},{"class":137,"line":1929},[5033,5037,5041,5045],{"type":44,"tag":135,"props":5034,"children":5035},{"style":239},[5036],{"type":50,"value":4115},{"type":44,"tag":135,"props":5038,"children":5039},{"style":224},[5040],{"type":50,"value":4080},{"type":44,"tag":135,"props":5042,"children":5043},{"style":383},[5044],{"type":50,"value":1902},{"type":44,"tag":135,"props":5046,"children":5047},{"style":224},[5048],{"type":50,"value":312},{"type":44,"tag":135,"props":5050,"children":5051},{"class":137,"line":1937},[5052],{"type":44,"tag":135,"props":5053,"children":5054},{"style":224},[5055],{"type":50,"value":4136},{"type":44,"tag":135,"props":5057,"children":5058},{"class":137,"line":1976},[5059,5063],{"type":44,"tag":135,"props":5060,"children":5061},{"style":618},[5062],{"type":50,"value":4144},{"type":44,"tag":135,"props":5064,"children":5065},{"style":224},[5066],{"type":50,"value":430},{"type":44,"tag":135,"props":5068,"children":5069},{"class":137,"line":2014},[5070],{"type":44,"tag":135,"props":5071,"children":5072},{"style":224},[5073],{"type":50,"value":312},{"type":44,"tag":135,"props":5075,"children":5076},{"class":137,"line":2052},[5077],{"type":44,"tag":135,"props":5078,"children":5079},{"emptyLinePlaceholder":489},[5080],{"type":50,"value":492},{"type":44,"tag":135,"props":5082,"children":5083},{"class":137,"line":2090},[5084,5088,5092,5097,5101],{"type":44,"tag":135,"props":5085,"children":5086},{"style":503},[5087],{"type":50,"value":723},{"type":44,"tag":135,"props":5089,"children":5090},{"style":239},[5091],{"type":50,"value":1743},{"type":44,"tag":135,"props":5093,"children":5094},{"style":383},[5095],{"type":50,"value":5096}," Image ",{"type":44,"tag":135,"props":5098,"children":5099},{"style":224},[5100],{"type":50,"value":548},{"type":44,"tag":135,"props":5102,"children":5103},{"style":383},[5104],{"type":50,"value":1757},{"type":44,"tag":135,"props":5106,"children":5107},{"class":137,"line":2098},[5108,5112,5116,5120,5124,5128,5132,5136,5140,5144,5148,5152,5156,5160],{"type":44,"tag":135,"props":5109,"children":5110},{"style":1763},[5111],{"type":50,"value":1766},{"type":44,"tag":135,"props":5113,"children":5114},{"style":224},[5115],{"type":50,"value":252},{"type":44,"tag":135,"props":5117,"children":5118},{"style":152},[5119],{"type":50,"value":1775},{"type":44,"tag":135,"props":5121,"children":5122},{"style":224},[5123],{"type":50,"value":1780},{"type":44,"tag":135,"props":5125,"children":5126},{"style":152},[5127],{"type":50,"value":1785},{"type":44,"tag":135,"props":5129,"children":5130},{"style":224},[5131],{"type":50,"value":1790},{"type":44,"tag":135,"props":5133,"children":5134},{"style":383},[5135],{"type":50,"value":4682},{"type":44,"tag":135,"props":5137,"children":5138},{"style":224},[5139],{"type":50,"value":1799},{"type":44,"tag":135,"props":5141,"children":5142},{"style":224},[5143],{"type":50,"value":1804},{"type":44,"tag":135,"props":5145,"children":5146},{"style":224},[5147],{"type":50,"value":380},{"type":44,"tag":135,"props":5149,"children":5150},{"style":618},[5151],{"type":50,"value":1813},{"type":44,"tag":135,"props":5153,"children":5154},{"style":224},[5155],{"type":50,"value":1818},{"type":44,"tag":135,"props":5157,"children":5158},{"style":152},[5159],{"type":50,"value":1823},{"type":44,"tag":135,"props":5161,"children":5162},{"style":224},[5163],{"type":50,"value":1828},{"type":44,"tag":135,"props":5165,"children":5166},{"class":137,"line":2107},[5167,5171,5175],{"type":44,"tag":135,"props":5168,"children":5169},{"style":383},[5170],{"type":50,"value":1836},{"type":44,"tag":135,"props":5172,"children":5173},{"style":239},[5174],{"type":50,"value":1841},{"type":44,"tag":135,"props":5176,"children":5177},{"style":224},[5178],{"type":50,"value":257},{"type":44,"tag":135,"props":5180,"children":5181},{"class":137,"line":2129},[5182,5186,5190,5194,5199,5203,5207,5211,5215,5219,5223,5227,5231,5235,5239,5243],{"type":44,"tag":135,"props":5183,"children":5184},{"style":503},[5185],{"type":50,"value":1854},{"type":44,"tag":135,"props":5187,"children":5188},{"style":399},[5189],{"type":50,"value":1859},{"type":44,"tag":135,"props":5191,"children":5192},{"style":618},[5193],{"type":50,"value":407},{"type":44,"tag":135,"props":5195,"children":5196},{"style":383},[5197],{"type":50,"value":5198},"CSSImage",{"type":44,"tag":135,"props":5200,"children":5201},{"style":224},[5202],{"type":50,"value":598},{"type":44,"tag":135,"props":5204,"children":5205},{"style":383},[5206],{"type":50,"value":1877},{"type":44,"tag":135,"props":5208,"children":5209},{"style":224},[5210],{"type":50,"value":598},{"type":44,"tag":135,"props":5212,"children":5213},{"style":224},[5214],{"type":50,"value":380},{"type":44,"tag":135,"props":5216,"children":5217},{"style":618},[5218],{"type":50,"value":1813},{"type":44,"tag":135,"props":5220,"children":5221},{"style":224},[5222],{"type":50,"value":252},{"type":44,"tag":135,"props":5224,"children":5225},{"style":224},[5226],{"type":50,"value":284},{"type":44,"tag":135,"props":5228,"children":5229},{"style":158},[5230],{"type":50,"value":1902},{"type":44,"tag":135,"props":5232,"children":5233},{"style":224},[5234],{"type":50,"value":247},{"type":44,"tag":135,"props":5236,"children":5237},{"style":224},[5238],{"type":50,"value":1451},{"type":44,"tag":135,"props":5240,"children":5241},{"style":618},[5242],{"type":50,"value":425},{"type":44,"tag":135,"props":5244,"children":5245},{"style":224},[5246],{"type":50,"value":430},{"type":44,"tag":135,"props":5248,"children":5249},{"class":137,"line":2174},[5250],{"type":44,"tag":135,"props":5251,"children":5252},{"style":224},[5253],{"type":50,"value":788},{"type":44,"tag":135,"props":5255,"children":5256},{"class":137,"line":2188},[5257],{"type":44,"tag":135,"props":5258,"children":5259},{"emptyLinePlaceholder":489},[5260],{"type":50,"value":492},{"type":44,"tag":135,"props":5262,"children":5263},{"class":137,"line":2260},[5264,5269,5273,5277,5281,5285,5290,5294],{"type":44,"tag":135,"props":5265,"children":5266},{"style":383},[5267],{"type":50,"value":5268},"Image",{"type":44,"tag":135,"props":5270,"children":5271},{"style":224},[5272],{"type":50,"value":1780},{"type":44,"tag":135,"props":5274,"children":5275},{"style":383},[5276],{"type":50,"value":2510},{"type":44,"tag":135,"props":5278,"children":5279},{"style":224},[5280],{"type":50,"value":548},{"type":44,"tag":135,"props":5282,"children":5283},{"style":224},[5284],{"type":50,"value":284},{"type":44,"tag":135,"props":5286,"children":5287},{"style":158},[5288],{"type":50,"value":5289},"CSS(Image)",{"type":44,"tag":135,"props":5291,"children":5292},{"style":224},[5293],{"type":50,"value":247},{"type":44,"tag":135,"props":5295,"children":5296},{"style":224},[5297],{"type":50,"value":430},{"type":44,"tag":333,"props":5299,"children":5301},{"id":5300},"animated-components-srctwanimatedtsx",[5302,5304,5310],{"type":50,"value":5303},"Animated Components (",{"type":44,"tag":131,"props":5305,"children":5307},{"className":5306},[],[5308],{"type":50,"value":5309},"src\u002Ftw\u002Fanimated.tsx",{"type":50,"value":425},{"type":44,"tag":123,"props":5312,"children":5314},{"className":1334,"code":5313,"language":1336,"meta":128,"style":128},"import * as TW from \".\u002Findex\";\nimport RNAnimated from \"react-native-reanimated\";\n\nexport const Animated = {\n  ...RNAnimated,\n  View: RNAnimated.createAnimatedComponent(TW.View),\n};\n",[5315],{"type":44,"tag":131,"props":5316,"children":5317},{"__ignoreMap":128},[5318,5360,5392,5399,5422,5439,5481],{"type":44,"tag":135,"props":5319,"children":5320},{"class":137,"line":138},[5321,5325,5330,5334,5339,5343,5347,5352,5356],{"type":44,"tag":135,"props":5322,"children":5323},{"style":503},[5324],{"type":50,"value":1348},{"type":44,"tag":135,"props":5326,"children":5327},{"style":224},[5328],{"type":50,"value":5329}," *",{"type":44,"tag":135,"props":5331,"children":5332},{"style":503},[5333],{"type":50,"value":1377},{"type":44,"tag":135,"props":5335,"children":5336},{"style":383},[5337],{"type":50,"value":5338}," TW ",{"type":44,"tag":135,"props":5340,"children":5341},{"style":503},[5342],{"type":50,"value":1489},{"type":44,"tag":135,"props":5344,"children":5345},{"style":224},[5346],{"type":50,"value":284},{"type":44,"tag":135,"props":5348,"children":5349},{"style":158},[5350],{"type":50,"value":5351},".\u002Findex",{"type":44,"tag":135,"props":5353,"children":5354},{"style":224},[5355],{"type":50,"value":247},{"type":44,"tag":135,"props":5357,"children":5358},{"style":224},[5359],{"type":50,"value":430},{"type":44,"tag":135,"props":5361,"children":5362},{"class":137,"line":148},[5363,5367,5372,5376,5380,5384,5388],{"type":44,"tag":135,"props":5364,"children":5365},{"style":503},[5366],{"type":50,"value":1348},{"type":44,"tag":135,"props":5368,"children":5369},{"style":383},[5370],{"type":50,"value":5371}," RNAnimated ",{"type":44,"tag":135,"props":5373,"children":5374},{"style":503},[5375],{"type":50,"value":1489},{"type":44,"tag":135,"props":5377,"children":5378},{"style":224},[5379],{"type":50,"value":284},{"type":44,"tag":135,"props":5381,"children":5382},{"style":158},[5383],{"type":50,"value":1498},{"type":44,"tag":135,"props":5385,"children":5386},{"style":224},[5387],{"type":50,"value":247},{"type":44,"tag":135,"props":5389,"children":5390},{"style":224},[5391],{"type":50,"value":430},{"type":44,"tag":135,"props":5393,"children":5394},{"class":137,"line":230},[5395],{"type":44,"tag":135,"props":5396,"children":5397},{"emptyLinePlaceholder":489},[5398],{"type":50,"value":492},{"type":44,"tag":135,"props":5400,"children":5401},{"class":137,"line":260},[5402,5406,5410,5414,5418],{"type":44,"tag":135,"props":5403,"children":5404},{"style":503},[5405],{"type":50,"value":723},{"type":44,"tag":135,"props":5407,"children":5408},{"style":239},[5409],{"type":50,"value":1743},{"type":44,"tag":135,"props":5411,"children":5412},{"style":383},[5413],{"type":50,"value":1484},{"type":44,"tag":135,"props":5415,"children":5416},{"style":224},[5417],{"type":50,"value":548},{"type":44,"tag":135,"props":5419,"children":5420},{"style":224},[5421],{"type":50,"value":257},{"type":44,"tag":135,"props":5423,"children":5424},{"class":137,"line":297},[5425,5430,5435],{"type":44,"tag":135,"props":5426,"children":5427},{"style":224},[5428],{"type":50,"value":5429},"  ...",{"type":44,"tag":135,"props":5431,"children":5432},{"style":383},[5433],{"type":50,"value":5434},"RNAnimated",{"type":44,"tag":135,"props":5436,"children":5437},{"style":224},[5438],{"type":50,"value":636},{"type":44,"tag":135,"props":5440,"children":5441},{"class":137,"line":306},[5442,5446,5450,5455,5459,5463,5468,5472,5477],{"type":44,"tag":135,"props":5443,"children":5444},{"style":618},[5445],{"type":50,"value":1558},{"type":44,"tag":135,"props":5447,"children":5448},{"style":224},[5449],{"type":50,"value":252},{"type":44,"tag":135,"props":5451,"children":5452},{"style":383},[5453],{"type":50,"value":5454}," RNAnimated",{"type":44,"tag":135,"props":5456,"children":5457},{"style":224},[5458],{"type":50,"value":1780},{"type":44,"tag":135,"props":5460,"children":5461},{"style":399},[5462],{"type":50,"value":4602},{"type":44,"tag":135,"props":5464,"children":5465},{"style":383},[5466],{"type":50,"value":5467},"(TW",{"type":44,"tag":135,"props":5469,"children":5470},{"style":224},[5471],{"type":50,"value":1780},{"type":44,"tag":135,"props":5473,"children":5474},{"style":383},[5475],{"type":50,"value":5476},"View)",{"type":44,"tag":135,"props":5478,"children":5479},{"style":224},[5480],{"type":50,"value":636},{"type":44,"tag":135,"props":5482,"children":5483},{"class":137,"line":565},[5484],{"type":44,"tag":135,"props":5485,"children":5486},{"style":224},[5487],{"type":50,"value":788},{"type":44,"tag":59,"props":5489,"children":5491},{"id":5490},"usage",[5492],{"type":50,"value":5493},"Usage",{"type":44,"tag":53,"props":5495,"children":5496},{},[5497],{"type":50,"value":5498},"Import CSS-wrapped components from your tw directory:",{"type":44,"tag":123,"props":5500,"children":5502},{"className":1334,"code":5501,"language":1336,"meta":128,"style":128},"import { View, Text, ScrollView, Image } from \"@\u002Ftw\";\n\nexport default function MyScreen() {\n  return (\n    \u003CScrollView className=\"flex-1 bg-white\">\n      \u003CView className=\"p-4 gap-4\">\n        \u003CText className=\"text-xl font-bold text-gray-900\">Hello Tailwind!\u003C\u002FText>\n        \u003CImage\n          className=\"w-full h-48 rounded-lg object-cover\"\n          source={{ uri: \"https:\u002F\u002Fexample.com\u002Fimage.jpg\" }}\n        \u002F>\n      \u003C\u002FView>\n    \u003C\u002FScrollView>\n  );\n}\n",[5503],{"type":44,"tag":131,"props":5504,"children":5505},{"__ignoreMap":128},[5506,5573,5580,5610,5621,5657,5694,5749,5761,5786,5825,5833,5849,5865,5876],{"type":44,"tag":135,"props":5507,"children":5508},{"class":137,"line":138},[5509,5513,5517,5522,5526,5531,5535,5540,5544,5548,5552,5556,5560,5565,5569],{"type":44,"tag":135,"props":5510,"children":5511},{"style":503},[5512],{"type":50,"value":1348},{"type":44,"tag":135,"props":5514,"children":5515},{"style":224},[5516],{"type":50,"value":380},{"type":44,"tag":135,"props":5518,"children":5519},{"style":383},[5520],{"type":50,"value":5521}," View",{"type":44,"tag":135,"props":5523,"children":5524},{"style":224},[5525],{"type":50,"value":598},{"type":44,"tag":135,"props":5527,"children":5528},{"style":383},[5529],{"type":50,"value":5530}," Text",{"type":44,"tag":135,"props":5532,"children":5533},{"style":224},[5534],{"type":50,"value":598},{"type":44,"tag":135,"props":5536,"children":5537},{"style":383},[5538],{"type":50,"value":5539}," ScrollView",{"type":44,"tag":135,"props":5541,"children":5542},{"style":224},[5543],{"type":50,"value":598},{"type":44,"tag":135,"props":5545,"children":5546},{"style":383},[5547],{"type":50,"value":4532},{"type":44,"tag":135,"props":5549,"children":5550},{"style":224},[5551],{"type":50,"value":1451},{"type":44,"tag":135,"props":5553,"children":5554},{"style":503},[5555],{"type":50,"value":1398},{"type":44,"tag":135,"props":5557,"children":5558},{"style":224},[5559],{"type":50,"value":284},{"type":44,"tag":135,"props":5561,"children":5562},{"style":158},[5563],{"type":50,"value":5564},"@\u002Ftw",{"type":44,"tag":135,"props":5566,"children":5567},{"style":224},[5568],{"type":50,"value":247},{"type":44,"tag":135,"props":5570,"children":5571},{"style":224},[5572],{"type":50,"value":430},{"type":44,"tag":135,"props":5574,"children":5575},{"class":137,"line":148},[5576],{"type":44,"tag":135,"props":5577,"children":5578},{"emptyLinePlaceholder":489},[5579],{"type":50,"value":492},{"type":44,"tag":135,"props":5581,"children":5582},{"class":137,"line":230},[5583,5587,5591,5596,5601,5606],{"type":44,"tag":135,"props":5584,"children":5585},{"style":503},[5586],{"type":50,"value":723},{"type":44,"tag":135,"props":5588,"children":5589},{"style":503},[5590],{"type":50,"value":728},{"type":44,"tag":135,"props":5592,"children":5593},{"style":239},[5594],{"type":50,"value":5595}," function",{"type":44,"tag":135,"props":5597,"children":5598},{"style":399},[5599],{"type":50,"value":5600}," MyScreen",{"type":44,"tag":135,"props":5602,"children":5603},{"style":224},[5604],{"type":50,"value":5605},"()",{"type":44,"tag":135,"props":5607,"children":5608},{"style":224},[5609],{"type":50,"value":257},{"type":44,"tag":135,"props":5611,"children":5612},{"class":137,"line":260},[5613,5617],{"type":44,"tag":135,"props":5614,"children":5615},{"style":503},[5616],{"type":50,"value":1854},{"type":44,"tag":135,"props":5618,"children":5619},{"style":618},[5620],{"type":50,"value":1757},{"type":44,"tag":135,"props":5622,"children":5623},{"class":137,"line":297},[5624,5628,5632,5636,5640,5644,5649,5653],{"type":44,"tag":135,"props":5625,"children":5626},{"style":224},[5627],{"type":50,"value":4061},{"type":44,"tag":135,"props":5629,"children":5630},{"style":152},[5631],{"type":50,"value":3044},{"type":44,"tag":135,"props":5633,"children":5634},{"style":239},[5635],{"type":50,"value":1813},{"type":44,"tag":135,"props":5637,"children":5638},{"style":224},[5639],{"type":50,"value":548},{"type":44,"tag":135,"props":5641,"children":5642},{"style":224},[5643],{"type":50,"value":247},{"type":44,"tag":135,"props":5645,"children":5646},{"style":158},[5647],{"type":50,"value":5648},"flex-1 bg-white",{"type":44,"tag":135,"props":5650,"children":5651},{"style":224},[5652],{"type":50,"value":247},{"type":44,"tag":135,"props":5654,"children":5655},{"style":224},[5656],{"type":50,"value":3945},{"type":44,"tag":135,"props":5658,"children":5659},{"class":137,"line":306},[5660,5665,5669,5673,5677,5681,5686,5690],{"type":44,"tag":135,"props":5661,"children":5662},{"style":224},[5663],{"type":50,"value":5664},"      \u003C",{"type":44,"tag":135,"props":5666,"children":5667},{"style":152},[5668],{"type":50,"value":2501},{"type":44,"tag":135,"props":5670,"children":5671},{"style":239},[5672],{"type":50,"value":1813},{"type":44,"tag":135,"props":5674,"children":5675},{"style":224},[5676],{"type":50,"value":548},{"type":44,"tag":135,"props":5678,"children":5679},{"style":224},[5680],{"type":50,"value":247},{"type":44,"tag":135,"props":5682,"children":5683},{"style":158},[5684],{"type":50,"value":5685},"p-4 gap-4",{"type":44,"tag":135,"props":5687,"children":5688},{"style":224},[5689],{"type":50,"value":247},{"type":44,"tag":135,"props":5691,"children":5692},{"style":224},[5693],{"type":50,"value":3945},{"type":44,"tag":135,"props":5695,"children":5696},{"class":137,"line":565},[5697,5702,5706,5710,5714,5718,5723,5727,5731,5736,5741,5745],{"type":44,"tag":135,"props":5698,"children":5699},{"style":224},[5700],{"type":50,"value":5701},"        \u003C",{"type":44,"tag":135,"props":5703,"children":5704},{"style":152},[5705],{"type":50,"value":2735},{"type":44,"tag":135,"props":5707,"children":5708},{"style":239},[5709],{"type":50,"value":1813},{"type":44,"tag":135,"props":5711,"children":5712},{"style":224},[5713],{"type":50,"value":548},{"type":44,"tag":135,"props":5715,"children":5716},{"style":224},[5717],{"type":50,"value":247},{"type":44,"tag":135,"props":5719,"children":5720},{"style":158},[5721],{"type":50,"value":5722},"text-xl font-bold text-gray-900",{"type":44,"tag":135,"props":5724,"children":5725},{"style":224},[5726],{"type":50,"value":247},{"type":44,"tag":135,"props":5728,"children":5729},{"style":224},[5730],{"type":50,"value":1799},{"type":44,"tag":135,"props":5732,"children":5733},{"style":383},[5734],{"type":50,"value":5735},"Hello Tailwind!",{"type":44,"tag":135,"props":5737,"children":5738},{"style":224},[5739],{"type":50,"value":5740},"\u003C\u002F",{"type":44,"tag":135,"props":5742,"children":5743},{"style":152},[5744],{"type":50,"value":2735},{"type":44,"tag":135,"props":5746,"children":5747},{"style":224},[5748],{"type":50,"value":3945},{"type":44,"tag":135,"props":5750,"children":5751},{"class":137,"line":573},[5752,5756],{"type":44,"tag":135,"props":5753,"children":5754},{"style":224},[5755],{"type":50,"value":5701},{"type":44,"tag":135,"props":5757,"children":5758},{"style":152},[5759],{"type":50,"value":5760},"Image\n",{"type":44,"tag":135,"props":5762,"children":5763},{"class":137,"line":605},[5764,5769,5773,5777,5782],{"type":44,"tag":135,"props":5765,"children":5766},{"style":239},[5767],{"type":50,"value":5768},"          className",{"type":44,"tag":135,"props":5770,"children":5771},{"style":224},[5772],{"type":50,"value":548},{"type":44,"tag":135,"props":5774,"children":5775},{"style":224},[5776],{"type":50,"value":247},{"type":44,"tag":135,"props":5778,"children":5779},{"style":158},[5780],{"type":50,"value":5781},"w-full h-48 rounded-lg object-cover",{"type":44,"tag":135,"props":5783,"children":5784},{"style":224},[5785],{"type":50,"value":294},{"type":44,"tag":135,"props":5787,"children":5788},{"class":137,"line":614},[5789,5794,5799,5803,5807,5811,5816,5820],{"type":44,"tag":135,"props":5790,"children":5791},{"style":239},[5792],{"type":50,"value":5793},"          source",{"type":44,"tag":135,"props":5795,"children":5796},{"style":224},[5797],{"type":50,"value":5798},"={{",{"type":44,"tag":135,"props":5800,"children":5801},{"style":618},[5802],{"type":50,"value":4975},{"type":44,"tag":135,"props":5804,"children":5805},{"style":224},[5806],{"type":50,"value":252},{"type":44,"tag":135,"props":5808,"children":5809},{"style":224},[5810],{"type":50,"value":284},{"type":44,"tag":135,"props":5812,"children":5813},{"style":158},[5814],{"type":50,"value":5815},"https:\u002F\u002Fexample.com\u002Fimage.jpg",{"type":44,"tag":135,"props":5817,"children":5818},{"style":224},[5819],{"type":50,"value":247},{"type":44,"tag":135,"props":5821,"children":5822},{"style":224},[5823],{"type":50,"value":5824}," }}\n",{"type":44,"tag":135,"props":5826,"children":5827},{"class":137,"line":639},[5828],{"type":44,"tag":135,"props":5829,"children":5830},{"style":224},[5831],{"type":50,"value":5832},"        \u002F>\n",{"type":44,"tag":135,"props":5834,"children":5835},{"class":137,"line":648},[5836,5841,5845],{"type":44,"tag":135,"props":5837,"children":5838},{"style":224},[5839],{"type":50,"value":5840},"      \u003C\u002F",{"type":44,"tag":135,"props":5842,"children":5843},{"style":152},[5844],{"type":50,"value":2501},{"type":44,"tag":135,"props":5846,"children":5847},{"style":224},[5848],{"type":50,"value":3945},{"type":44,"tag":135,"props":5850,"children":5851},{"class":137,"line":669},[5852,5857,5861],{"type":44,"tag":135,"props":5853,"children":5854},{"style":224},[5855],{"type":50,"value":5856},"    \u003C\u002F",{"type":44,"tag":135,"props":5858,"children":5859},{"style":152},[5860],{"type":50,"value":3044},{"type":44,"tag":135,"props":5862,"children":5863},{"style":224},[5864],{"type":50,"value":3945},{"type":44,"tag":135,"props":5866,"children":5867},{"class":137,"line":1063},[5868,5872],{"type":44,"tag":135,"props":5869,"children":5870},{"style":618},[5871],{"type":50,"value":4144},{"type":44,"tag":135,"props":5873,"children":5874},{"style":224},[5875],{"type":50,"value":430},{"type":44,"tag":135,"props":5877,"children":5878},{"class":137,"line":1071},[5879],{"type":44,"tag":135,"props":5880,"children":5881},{"style":224},[5882],{"type":50,"value":312},{"type":44,"tag":59,"props":5884,"children":5886},{"id":5885},"custom-theme-variables",[5887],{"type":50,"value":5888},"Custom Theme Variables",{"type":44,"tag":53,"props":5890,"children":5891},{},[5892,5894,5900],{"type":50,"value":5893},"Add custom theme variables in your global.css using ",{"type":44,"tag":131,"props":5895,"children":5897},{"className":5896},[],[5898],{"type":50,"value":5899},"@theme",{"type":50,"value":252},{"type":44,"tag":123,"props":5902,"children":5904},{"className":808,"code":5903,"language":810,"meta":128,"style":128},"@layer theme {\n  @theme {\n    \u002F* Custom fonts *\u002F\n    --font-rounded: \"SF Pro Rounded\", sans-serif;\n\n    \u002F* Custom line heights *\u002F\n    --text-xs--line-height: calc(1em \u002F 0.75);\n    --text-sm--line-height: calc(1.25em \u002F 0.875);\n    --text-base--line-height: calc(1.5em \u002F 1);\n\n    \u002F* Custom leading scales *\u002F\n    --leading-tight: 1.25em;\n    --leading-snug: 1.375em;\n    --leading-normal: 1.5em;\n  }\n}\n",[5905],{"type":44,"tag":131,"props":5906,"children":5907},{"__ignoreMap":128},[5908,5925,5937,5945,5966,5973,5981,6002,6037,6059,6066,6074,6082,6090,6098,6105],{"type":44,"tag":135,"props":5909,"children":5910},{"class":137,"line":138},[5911,5916,5921],{"type":44,"tag":135,"props":5912,"children":5913},{"style":503},[5914],{"type":50,"value":5915},"@layer",{"type":44,"tag":135,"props":5917,"children":5918},{"style":383},[5919],{"type":50,"value":5920}," theme ",{"type":44,"tag":135,"props":5922,"children":5923},{"style":224},[5924],{"type":50,"value":227},{"type":44,"tag":135,"props":5926,"children":5927},{"class":137,"line":148},[5928,5933],{"type":44,"tag":135,"props":5929,"children":5930},{"style":503},[5931],{"type":50,"value":5932},"  @theme",{"type":44,"tag":135,"props":5934,"children":5935},{"style":224},[5936],{"type":50,"value":257},{"type":44,"tag":135,"props":5938,"children":5939},{"class":137,"line":230},[5940],{"type":44,"tag":135,"props":5941,"children":5942},{"style":142},[5943],{"type":50,"value":5944},"    \u002F* Custom fonts *\u002F\n",{"type":44,"tag":135,"props":5946,"children":5947},{"class":137,"line":260},[5948,5953,5957,5962],{"type":44,"tag":135,"props":5949,"children":5950},{"style":383},[5951],{"type":50,"value":5952},"    --font-rounded: \"SF Pro Rounded\"",{"type":44,"tag":135,"props":5954,"children":5955},{"style":224},[5956],{"type":50,"value":598},{"type":44,"tag":135,"props":5958,"children":5959},{"style":152},[5960],{"type":50,"value":5961}," sans-serif",{"type":44,"tag":135,"props":5963,"children":5964},{"style":383},[5965],{"type":50,"value":430},{"type":44,"tag":135,"props":5967,"children":5968},{"class":137,"line":297},[5969],{"type":44,"tag":135,"props":5970,"children":5971},{"emptyLinePlaceholder":489},[5972],{"type":50,"value":492},{"type":44,"tag":135,"props":5974,"children":5975},{"class":137,"line":306},[5976],{"type":44,"tag":135,"props":5977,"children":5978},{"style":142},[5979],{"type":50,"value":5980},"    \u002F* Custom line heights *\u002F\n",{"type":44,"tag":135,"props":5982,"children":5983},{"class":137,"line":565},[5984,5989,5993,5998],{"type":44,"tag":135,"props":5985,"children":5986},{"style":383},[5987],{"type":50,"value":5988},"    --text-xs--line-height: calc(1em \u002F 0",{"type":44,"tag":135,"props":5990,"children":5991},{"style":224},[5992],{"type":50,"value":1780},{"type":44,"tag":135,"props":5994,"children":5995},{"style":152},[5996],{"type":50,"value":5997},"75",{"type":44,"tag":135,"props":5999,"children":6000},{"style":383},[6001],{"type":50,"value":854},{"type":44,"tag":135,"props":6003,"children":6004},{"class":137,"line":573},[6005,6010,6014,6019,6024,6028,6033],{"type":44,"tag":135,"props":6006,"children":6007},{"style":383},[6008],{"type":50,"value":6009},"    --text-sm--line-height: calc(1",{"type":44,"tag":135,"props":6011,"children":6012},{"style":224},[6013],{"type":50,"value":1780},{"type":44,"tag":135,"props":6015,"children":6016},{"style":152},[6017],{"type":50,"value":6018},"25em",{"type":44,"tag":135,"props":6020,"children":6021},{"style":383},[6022],{"type":50,"value":6023}," \u002F 0",{"type":44,"tag":135,"props":6025,"children":6026},{"style":224},[6027],{"type":50,"value":1780},{"type":44,"tag":135,"props":6029,"children":6030},{"style":152},[6031],{"type":50,"value":6032},"875",{"type":44,"tag":135,"props":6034,"children":6035},{"style":383},[6036],{"type":50,"value":854},{"type":44,"tag":135,"props":6038,"children":6039},{"class":137,"line":605},[6040,6045,6049,6054],{"type":44,"tag":135,"props":6041,"children":6042},{"style":383},[6043],{"type":50,"value":6044},"    --text-base--line-height: calc(1",{"type":44,"tag":135,"props":6046,"children":6047},{"style":224},[6048],{"type":50,"value":1780},{"type":44,"tag":135,"props":6050,"children":6051},{"style":152},[6052],{"type":50,"value":6053},"5em",{"type":44,"tag":135,"props":6055,"children":6056},{"style":383},[6057],{"type":50,"value":6058}," \u002F 1);\n",{"type":44,"tag":135,"props":6060,"children":6061},{"class":137,"line":614},[6062],{"type":44,"tag":135,"props":6063,"children":6064},{"emptyLinePlaceholder":489},[6065],{"type":50,"value":492},{"type":44,"tag":135,"props":6067,"children":6068},{"class":137,"line":639},[6069],{"type":44,"tag":135,"props":6070,"children":6071},{"style":142},[6072],{"type":50,"value":6073},"    \u002F* Custom leading scales *\u002F\n",{"type":44,"tag":135,"props":6075,"children":6076},{"class":137,"line":648},[6077],{"type":44,"tag":135,"props":6078,"children":6079},{"style":383},[6080],{"type":50,"value":6081},"    --leading-tight: 1.25em;\n",{"type":44,"tag":135,"props":6083,"children":6084},{"class":137,"line":669},[6085],{"type":44,"tag":135,"props":6086,"children":6087},{"style":383},[6088],{"type":50,"value":6089},"    --leading-snug: 1.375em;\n",{"type":44,"tag":135,"props":6091,"children":6092},{"class":137,"line":1063},[6093],{"type":44,"tag":135,"props":6094,"children":6095},{"style":383},[6096],{"type":50,"value":6097},"    --leading-normal: 1.5em;\n",{"type":44,"tag":135,"props":6099,"children":6100},{"class":137,"line":1071},[6101],{"type":44,"tag":135,"props":6102,"children":6103},{"style":383},[6104],{"type":50,"value":303},{"type":44,"tag":135,"props":6106,"children":6107},{"class":137,"line":1088},[6108],{"type":44,"tag":135,"props":6109,"children":6110},{"style":383},[6111],{"type":50,"value":312},{"type":44,"tag":59,"props":6113,"children":6115},{"id":6114},"platform-specific-styles",[6116],{"type":50,"value":6117},"Platform-Specific Styles",{"type":44,"tag":53,"props":6119,"children":6120},{},[6121],{"type":50,"value":6122},"Use platform media queries for platform-specific styling:",{"type":44,"tag":123,"props":6124,"children":6126},{"className":808,"code":6125,"language":810,"meta":128,"style":128},"@media ios {\n  :root {\n    --font-sans: system-ui;\n    --font-rounded: ui-rounded;\n  }\n}\n\n@media android {\n  :root {\n    --font-sans: normal;\n    --font-rounded: normal;\n  }\n}\n",[6127],{"type":44,"tag":131,"props":6128,"children":6129},{"__ignoreMap":128},[6130,6145,6160,6179,6198,6205,6212,6219,6234,6249,6268,6287,6294],{"type":44,"tag":135,"props":6131,"children":6132},{"class":137,"line":138},[6133,6137,6141],{"type":44,"tag":135,"props":6134,"children":6135},{"style":503},[6136],{"type":50,"value":938},{"type":44,"tag":135,"props":6138,"children":6139},{"style":383},[6140],{"type":50,"value":1081},{"type":44,"tag":135,"props":6142,"children":6143},{"style":224},[6144],{"type":50,"value":227},{"type":44,"tag":135,"props":6146,"children":6147},{"class":137,"line":148},[6148,6152,6156],{"type":44,"tag":135,"props":6149,"children":6150},{"style":224},[6151],{"type":50,"value":955},{"type":44,"tag":135,"props":6153,"children":6154},{"style":239},[6155],{"type":50,"value":41},{"type":44,"tag":135,"props":6157,"children":6158},{"style":224},[6159],{"type":50,"value":257},{"type":44,"tag":135,"props":6161,"children":6162},{"class":137,"line":230},[6163,6167,6171,6175],{"type":44,"tag":135,"props":6164,"children":6165},{"style":383},[6166],{"type":50,"value":1034},{"type":44,"tag":135,"props":6168,"children":6169},{"style":224},[6170],{"type":50,"value":252},{"type":44,"tag":135,"props":6172,"children":6173},{"style":383},[6174],{"type":50,"value":1160},{"type":44,"tag":135,"props":6176,"children":6177},{"style":224},[6178],{"type":50,"value":430},{"type":44,"tag":135,"props":6180,"children":6181},{"class":137,"line":260},[6182,6186,6190,6194],{"type":44,"tag":135,"props":6183,"children":6184},{"style":383},[6185],{"type":50,"value":992},{"type":44,"tag":135,"props":6187,"children":6188},{"style":224},[6189],{"type":50,"value":252},{"type":44,"tag":135,"props":6191,"children":6192},{"style":383},[6193],{"type":50,"value":1181},{"type":44,"tag":135,"props":6195,"children":6196},{"style":224},[6197],{"type":50,"value":430},{"type":44,"tag":135,"props":6199,"children":6200},{"class":137,"line":297},[6201],{"type":44,"tag":135,"props":6202,"children":6203},{"style":224},[6204],{"type":50,"value":303},{"type":44,"tag":135,"props":6206,"children":6207},{"class":137,"line":306},[6208],{"type":44,"tag":135,"props":6209,"children":6210},{"style":224},[6211],{"type":50,"value":312},{"type":44,"tag":135,"props":6213,"children":6214},{"class":137,"line":565},[6215],{"type":44,"tag":135,"props":6216,"children":6217},{"emptyLinePlaceholder":489},[6218],{"type":50,"value":492},{"type":44,"tag":135,"props":6220,"children":6221},{"class":137,"line":573},[6222,6226,6230],{"type":44,"tag":135,"props":6223,"children":6224},{"style":503},[6225],{"type":50,"value":938},{"type":44,"tag":135,"props":6227,"children":6228},{"style":383},[6229],{"type":50,"value":943},{"type":44,"tag":135,"props":6231,"children":6232},{"style":224},[6233],{"type":50,"value":227},{"type":44,"tag":135,"props":6235,"children":6236},{"class":137,"line":605},[6237,6241,6245],{"type":44,"tag":135,"props":6238,"children":6239},{"style":224},[6240],{"type":50,"value":955},{"type":44,"tag":135,"props":6242,"children":6243},{"style":239},[6244],{"type":50,"value":41},{"type":44,"tag":135,"props":6246,"children":6247},{"style":224},[6248],{"type":50,"value":257},{"type":44,"tag":135,"props":6250,"children":6251},{"class":137,"line":614},[6252,6256,6260,6264],{"type":44,"tag":135,"props":6253,"children":6254},{"style":383},[6255],{"type":50,"value":1034},{"type":44,"tag":135,"props":6257,"children":6258},{"style":224},[6259],{"type":50,"value":252},{"type":44,"tag":135,"props":6261,"children":6262},{"style":383},[6263],{"type":50,"value":1001},{"type":44,"tag":135,"props":6265,"children":6266},{"style":224},[6267],{"type":50,"value":430},{"type":44,"tag":135,"props":6269,"children":6270},{"class":137,"line":639},[6271,6275,6279,6283],{"type":44,"tag":135,"props":6272,"children":6273},{"style":383},[6274],{"type":50,"value":992},{"type":44,"tag":135,"props":6276,"children":6277},{"style":224},[6278],{"type":50,"value":252},{"type":44,"tag":135,"props":6280,"children":6281},{"style":383},[6282],{"type":50,"value":1001},{"type":44,"tag":135,"props":6284,"children":6285},{"style":224},[6286],{"type":50,"value":430},{"type":44,"tag":135,"props":6288,"children":6289},{"class":137,"line":648},[6290],{"type":44,"tag":135,"props":6291,"children":6292},{"style":224},[6293],{"type":50,"value":303},{"type":44,"tag":135,"props":6295,"children":6296},{"class":137,"line":669},[6297],{"type":44,"tag":135,"props":6298,"children":6299},{"style":224},[6300],{"type":50,"value":312},{"type":44,"tag":59,"props":6302,"children":6304},{"id":6303},"apple-system-colors-with-css-variables",[6305],{"type":50,"value":6306},"Apple System Colors with CSS Variables",{"type":44,"tag":53,"props":6308,"children":6309},{},[6310],{"type":50,"value":6311},"Create a CSS file for Apple semantic colors:",{"type":44,"tag":123,"props":6313,"children":6315},{"className":808,"code":6314,"language":810,"meta":128,"style":128},"\u002F* src\u002Fcss\u002Fsf.css *\u002F\n@layer base {\n  html {\n    color-scheme: light;\n  }\n}\n\n:root {\n  \u002F* Accent colors with light\u002Fdark mode *\u002F\n  --sf-blue: light-dark(rgb(0 122 255), rgb(10 132 255));\n  --sf-green: light-dark(rgb(52 199 89), rgb(48 209 89));\n  --sf-red: light-dark(rgb(255 59 48), rgb(255 69 58));\n\n  \u002F* Gray scales *\u002F\n  --sf-gray: light-dark(rgb(142 142 147), rgb(142 142 147));\n  --sf-gray-2: light-dark(rgb(174 174 178), rgb(99 99 102));\n\n  \u002F* Text colors *\u002F\n  --sf-text: light-dark(rgb(0 0 0), rgb(255 255 255));\n  --sf-text-2: light-dark(rgb(60 60 67 \u002F 0.6), rgb(235 235 245 \u002F 0.6));\n\n  \u002F* Background colors *\u002F\n  --sf-bg: light-dark(rgb(255 255 255), rgb(0 0 0));\n  --sf-bg-2: light-dark(rgb(242 242 247), rgb(28 28 30));\n}\n\n\u002F* iOS native colors via platformColor *\u002F\n@media ios {\n  :root {\n    --sf-blue: platformColor(systemBlue);\n    --sf-green: platformColor(systemGreen);\n    --sf-red: platformColor(systemRed);\n    --sf-gray: platformColor(systemGray);\n    --sf-text: platformColor(label);\n    --sf-text-2: platformColor(secondaryLabel);\n    --sf-bg: platformColor(systemBackground);\n    --sf-bg-2: platformColor(secondarySystemBackground);\n  }\n}\n\n\u002F* Register as Tailwind theme colors *\u002F\n@layer theme {\n  @theme {\n    --color-sf-blue: var(--sf-blue);\n    --color-sf-green: var(--sf-green);\n    --color-sf-red: var(--sf-red);\n    --color-sf-gray: var(--sf-gray);\n    --color-sf-text: var(--sf-text);\n    --color-sf-text-2: var(--sf-text-2);\n    --color-sf-bg: var(--sf-bg);\n    --color-sf-bg-2: var(--sf-bg-2);\n  }\n}\n",[6316],{"type":44,"tag":131,"props":6317,"children":6318},{"__ignoreMap":128},[6319,6327,6343,6355,6377,6384,6391,6398,6413,6421,6503,6580,6657,6664,6672,6747,6825,6832,6840,6913,7009,7016,7024,7096,7174,7181,7188,7196,7211,7226,7247,7268,7289,7310,7331,7352,7373,7394,7401,7408,7415,7423,7438,7449,7457,7465,7473,7481,7489,7497,7505,7513,7520],{"type":44,"tag":135,"props":6320,"children":6321},{"class":137,"line":138},[6322],{"type":44,"tag":135,"props":6323,"children":6324},{"style":142},[6325],{"type":50,"value":6326},"\u002F* src\u002Fcss\u002Fsf.css *\u002F\n",{"type":44,"tag":135,"props":6328,"children":6329},{"class":137,"line":148},[6330,6334,6339],{"type":44,"tag":135,"props":6331,"children":6332},{"style":503},[6333],{"type":50,"value":5915},{"type":44,"tag":135,"props":6335,"children":6336},{"style":383},[6337],{"type":50,"value":6338}," base ",{"type":44,"tag":135,"props":6340,"children":6341},{"style":224},[6342],{"type":50,"value":227},{"type":44,"tag":135,"props":6344,"children":6345},{"class":137,"line":230},[6346,6351],{"type":44,"tag":135,"props":6347,"children":6348},{"style":152},[6349],{"type":50,"value":6350},"  html",{"type":44,"tag":135,"props":6352,"children":6353},{"style":224},[6354],{"type":50,"value":257},{"type":44,"tag":135,"props":6356,"children":6357},{"class":137,"line":260},[6358,6364,6368,6373],{"type":44,"tag":135,"props":6359,"children":6361},{"style":6360},"--shiki-light:#8796B0;--shiki-default:#B2CCD6;--shiki-dark:#B2CCD6",[6362],{"type":50,"value":6363},"    color-scheme",{"type":44,"tag":135,"props":6365,"children":6366},{"style":224},[6367],{"type":50,"value":252},{"type":44,"tag":135,"props":6369,"children":6370},{"style":383},[6371],{"type":50,"value":6372}," light",{"type":44,"tag":135,"props":6374,"children":6375},{"style":224},[6376],{"type":50,"value":430},{"type":44,"tag":135,"props":6378,"children":6379},{"class":137,"line":297},[6380],{"type":44,"tag":135,"props":6381,"children":6382},{"style":224},[6383],{"type":50,"value":303},{"type":44,"tag":135,"props":6385,"children":6386},{"class":137,"line":306},[6387],{"type":44,"tag":135,"props":6388,"children":6389},{"style":224},[6390],{"type":50,"value":312},{"type":44,"tag":135,"props":6392,"children":6393},{"class":137,"line":565},[6394],{"type":44,"tag":135,"props":6395,"children":6396},{"emptyLinePlaceholder":489},[6397],{"type":50,"value":492},{"type":44,"tag":135,"props":6399,"children":6400},{"class":137,"line":573},[6401,6405,6409],{"type":44,"tag":135,"props":6402,"children":6403},{"style":224},[6404],{"type":50,"value":252},{"type":44,"tag":135,"props":6406,"children":6407},{"style":239},[6408],{"type":50,"value":41},{"type":44,"tag":135,"props":6410,"children":6411},{"style":224},[6412],{"type":50,"value":257},{"type":44,"tag":135,"props":6414,"children":6415},{"class":137,"line":605},[6416],{"type":44,"tag":135,"props":6417,"children":6418},{"style":142},[6419],{"type":50,"value":6420},"  \u002F* Accent colors with light\u002Fdark mode *\u002F\n",{"type":44,"tag":135,"props":6422,"children":6423},{"class":137,"line":614},[6424,6429,6433,6438,6443,6447,6453,6458,6463,6468,6473,6477,6482,6487,6491,6495,6499],{"type":44,"tag":135,"props":6425,"children":6426},{"style":383},[6427],{"type":50,"value":6428},"  --sf-blue",{"type":44,"tag":135,"props":6430,"children":6431},{"style":224},[6432],{"type":50,"value":252},{"type":44,"tag":135,"props":6434,"children":6435},{"style":383},[6436],{"type":50,"value":6437}," light-dark(",{"type":44,"tag":135,"props":6439,"children":6440},{"style":399},[6441],{"type":50,"value":6442},"rgb",{"type":44,"tag":135,"props":6444,"children":6445},{"style":224},[6446],{"type":50,"value":407},{"type":44,"tag":135,"props":6448,"children":6450},{"style":6449},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[6451],{"type":50,"value":6452},"0",{"type":44,"tag":135,"props":6454,"children":6455},{"style":6449},[6456],{"type":50,"value":6457}," 122",{"type":44,"tag":135,"props":6459,"children":6460},{"style":6449},[6461],{"type":50,"value":6462}," 255",{"type":44,"tag":135,"props":6464,"children":6465},{"style":224},[6466],{"type":50,"value":6467},"),",{"type":44,"tag":135,"props":6469,"children":6470},{"style":399},[6471],{"type":50,"value":6472}," rgb",{"type":44,"tag":135,"props":6474,"children":6475},{"style":224},[6476],{"type":50,"value":407},{"type":44,"tag":135,"props":6478,"children":6479},{"style":6449},[6480],{"type":50,"value":6481},"10",{"type":44,"tag":135,"props":6483,"children":6484},{"style":6449},[6485],{"type":50,"value":6486}," 132",{"type":44,"tag":135,"props":6488,"children":6489},{"style":6449},[6490],{"type":50,"value":6462},{"type":44,"tag":135,"props":6492,"children":6493},{"style":224},[6494],{"type":50,"value":425},{"type":44,"tag":135,"props":6496,"children":6497},{"style":383},[6498],{"type":50,"value":425},{"type":44,"tag":135,"props":6500,"children":6501},{"style":224},[6502],{"type":50,"value":430},{"type":44,"tag":135,"props":6504,"children":6505},{"class":137,"line":639},[6506,6511,6515,6519,6523,6527,6532,6537,6542,6546,6550,6554,6559,6564,6568,6572,6576],{"type":44,"tag":135,"props":6507,"children":6508},{"style":383},[6509],{"type":50,"value":6510},"  --sf-green",{"type":44,"tag":135,"props":6512,"children":6513},{"style":224},[6514],{"type":50,"value":252},{"type":44,"tag":135,"props":6516,"children":6517},{"style":383},[6518],{"type":50,"value":6437},{"type":44,"tag":135,"props":6520,"children":6521},{"style":399},[6522],{"type":50,"value":6442},{"type":44,"tag":135,"props":6524,"children":6525},{"style":224},[6526],{"type":50,"value":407},{"type":44,"tag":135,"props":6528,"children":6529},{"style":6449},[6530],{"type":50,"value":6531},"52",{"type":44,"tag":135,"props":6533,"children":6534},{"style":6449},[6535],{"type":50,"value":6536}," 199",{"type":44,"tag":135,"props":6538,"children":6539},{"style":6449},[6540],{"type":50,"value":6541}," 89",{"type":44,"tag":135,"props":6543,"children":6544},{"style":224},[6545],{"type":50,"value":6467},{"type":44,"tag":135,"props":6547,"children":6548},{"style":399},[6549],{"type":50,"value":6472},{"type":44,"tag":135,"props":6551,"children":6552},{"style":224},[6553],{"type":50,"value":407},{"type":44,"tag":135,"props":6555,"children":6556},{"style":6449},[6557],{"type":50,"value":6558},"48",{"type":44,"tag":135,"props":6560,"children":6561},{"style":6449},[6562],{"type":50,"value":6563}," 209",{"type":44,"tag":135,"props":6565,"children":6566},{"style":6449},[6567],{"type":50,"value":6541},{"type":44,"tag":135,"props":6569,"children":6570},{"style":224},[6571],{"type":50,"value":425},{"type":44,"tag":135,"props":6573,"children":6574},{"style":383},[6575],{"type":50,"value":425},{"type":44,"tag":135,"props":6577,"children":6578},{"style":224},[6579],{"type":50,"value":430},{"type":44,"tag":135,"props":6581,"children":6582},{"class":137,"line":648},[6583,6588,6592,6596,6600,6604,6609,6614,6619,6623,6627,6631,6635,6640,6645,6649,6653],{"type":44,"tag":135,"props":6584,"children":6585},{"style":383},[6586],{"type":50,"value":6587},"  --sf-red",{"type":44,"tag":135,"props":6589,"children":6590},{"style":224},[6591],{"type":50,"value":252},{"type":44,"tag":135,"props":6593,"children":6594},{"style":383},[6595],{"type":50,"value":6437},{"type":44,"tag":135,"props":6597,"children":6598},{"style":399},[6599],{"type":50,"value":6442},{"type":44,"tag":135,"props":6601,"children":6602},{"style":224},[6603],{"type":50,"value":407},{"type":44,"tag":135,"props":6605,"children":6606},{"style":6449},[6607],{"type":50,"value":6608},"255",{"type":44,"tag":135,"props":6610,"children":6611},{"style":6449},[6612],{"type":50,"value":6613}," 59",{"type":44,"tag":135,"props":6615,"children":6616},{"style":6449},[6617],{"type":50,"value":6618}," 48",{"type":44,"tag":135,"props":6620,"children":6621},{"style":224},[6622],{"type":50,"value":6467},{"type":44,"tag":135,"props":6624,"children":6625},{"style":399},[6626],{"type":50,"value":6472},{"type":44,"tag":135,"props":6628,"children":6629},{"style":224},[6630],{"type":50,"value":407},{"type":44,"tag":135,"props":6632,"children":6633},{"style":6449},[6634],{"type":50,"value":6608},{"type":44,"tag":135,"props":6636,"children":6637},{"style":6449},[6638],{"type":50,"value":6639}," 69",{"type":44,"tag":135,"props":6641,"children":6642},{"style":6449},[6643],{"type":50,"value":6644}," 58",{"type":44,"tag":135,"props":6646,"children":6647},{"style":224},[6648],{"type":50,"value":425},{"type":44,"tag":135,"props":6650,"children":6651},{"style":383},[6652],{"type":50,"value":425},{"type":44,"tag":135,"props":6654,"children":6655},{"style":224},[6656],{"type":50,"value":430},{"type":44,"tag":135,"props":6658,"children":6659},{"class":137,"line":669},[6660],{"type":44,"tag":135,"props":6661,"children":6662},{"emptyLinePlaceholder":489},[6663],{"type":50,"value":492},{"type":44,"tag":135,"props":6665,"children":6666},{"class":137,"line":1063},[6667],{"type":44,"tag":135,"props":6668,"children":6669},{"style":142},[6670],{"type":50,"value":6671},"  \u002F* Gray scales *\u002F\n",{"type":44,"tag":135,"props":6673,"children":6674},{"class":137,"line":1071},[6675,6680,6684,6688,6692,6696,6701,6706,6711,6715,6719,6723,6727,6731,6735,6739,6743],{"type":44,"tag":135,"props":6676,"children":6677},{"style":383},[6678],{"type":50,"value":6679},"  --sf-gray",{"type":44,"tag":135,"props":6681,"children":6682},{"style":224},[6683],{"type":50,"value":252},{"type":44,"tag":135,"props":6685,"children":6686},{"style":383},[6687],{"type":50,"value":6437},{"type":44,"tag":135,"props":6689,"children":6690},{"style":399},[6691],{"type":50,"value":6442},{"type":44,"tag":135,"props":6693,"children":6694},{"style":224},[6695],{"type":50,"value":407},{"type":44,"tag":135,"props":6697,"children":6698},{"style":6449},[6699],{"type":50,"value":6700},"142",{"type":44,"tag":135,"props":6702,"children":6703},{"style":6449},[6704],{"type":50,"value":6705}," 142",{"type":44,"tag":135,"props":6707,"children":6708},{"style":6449},[6709],{"type":50,"value":6710}," 147",{"type":44,"tag":135,"props":6712,"children":6713},{"style":224},[6714],{"type":50,"value":6467},{"type":44,"tag":135,"props":6716,"children":6717},{"style":399},[6718],{"type":50,"value":6472},{"type":44,"tag":135,"props":6720,"children":6721},{"style":224},[6722],{"type":50,"value":407},{"type":44,"tag":135,"props":6724,"children":6725},{"style":6449},[6726],{"type":50,"value":6700},{"type":44,"tag":135,"props":6728,"children":6729},{"style":6449},[6730],{"type":50,"value":6705},{"type":44,"tag":135,"props":6732,"children":6733},{"style":6449},[6734],{"type":50,"value":6710},{"type":44,"tag":135,"props":6736,"children":6737},{"style":224},[6738],{"type":50,"value":425},{"type":44,"tag":135,"props":6740,"children":6741},{"style":383},[6742],{"type":50,"value":425},{"type":44,"tag":135,"props":6744,"children":6745},{"style":224},[6746],{"type":50,"value":430},{"type":44,"tag":135,"props":6748,"children":6749},{"class":137,"line":1088},[6750,6755,6759,6763,6767,6771,6776,6781,6786,6790,6794,6798,6803,6808,6813,6817,6821],{"type":44,"tag":135,"props":6751,"children":6752},{"style":383},[6753],{"type":50,"value":6754},"  --sf-gray-2",{"type":44,"tag":135,"props":6756,"children":6757},{"style":224},[6758],{"type":50,"value":252},{"type":44,"tag":135,"props":6760,"children":6761},{"style":383},[6762],{"type":50,"value":6437},{"type":44,"tag":135,"props":6764,"children":6765},{"style":399},[6766],{"type":50,"value":6442},{"type":44,"tag":135,"props":6768,"children":6769},{"style":224},[6770],{"type":50,"value":407},{"type":44,"tag":135,"props":6772,"children":6773},{"style":6449},[6774],{"type":50,"value":6775},"174",{"type":44,"tag":135,"props":6777,"children":6778},{"style":6449},[6779],{"type":50,"value":6780}," 174",{"type":44,"tag":135,"props":6782,"children":6783},{"style":6449},[6784],{"type":50,"value":6785}," 178",{"type":44,"tag":135,"props":6787,"children":6788},{"style":224},[6789],{"type":50,"value":6467},{"type":44,"tag":135,"props":6791,"children":6792},{"style":399},[6793],{"type":50,"value":6472},{"type":44,"tag":135,"props":6795,"children":6796},{"style":224},[6797],{"type":50,"value":407},{"type":44,"tag":135,"props":6799,"children":6800},{"style":6449},[6801],{"type":50,"value":6802},"99",{"type":44,"tag":135,"props":6804,"children":6805},{"style":6449},[6806],{"type":50,"value":6807}," 99",{"type":44,"tag":135,"props":6809,"children":6810},{"style":6449},[6811],{"type":50,"value":6812}," 102",{"type":44,"tag":135,"props":6814,"children":6815},{"style":224},[6816],{"type":50,"value":425},{"type":44,"tag":135,"props":6818,"children":6819},{"style":383},[6820],{"type":50,"value":425},{"type":44,"tag":135,"props":6822,"children":6823},{"style":224},[6824],{"type":50,"value":430},{"type":44,"tag":135,"props":6826,"children":6827},{"class":137,"line":1104},[6828],{"type":44,"tag":135,"props":6829,"children":6830},{"emptyLinePlaceholder":489},[6831],{"type":50,"value":492},{"type":44,"tag":135,"props":6833,"children":6834},{"class":137,"line":1125},[6835],{"type":44,"tag":135,"props":6836,"children":6837},{"style":142},[6838],{"type":50,"value":6839},"  \u002F* Text colors *\u002F\n",{"type":44,"tag":135,"props":6841,"children":6842},{"class":137,"line":1146},[6843,6848,6852,6856,6860,6864,6868,6873,6877,6881,6885,6889,6893,6897,6901,6905,6909],{"type":44,"tag":135,"props":6844,"children":6845},{"style":383},[6846],{"type":50,"value":6847},"  --sf-text",{"type":44,"tag":135,"props":6849,"children":6850},{"style":224},[6851],{"type":50,"value":252},{"type":44,"tag":135,"props":6853,"children":6854},{"style":383},[6855],{"type":50,"value":6437},{"type":44,"tag":135,"props":6857,"children":6858},{"style":399},[6859],{"type":50,"value":6442},{"type":44,"tag":135,"props":6861,"children":6862},{"style":224},[6863],{"type":50,"value":407},{"type":44,"tag":135,"props":6865,"children":6866},{"style":6449},[6867],{"type":50,"value":6452},{"type":44,"tag":135,"props":6869,"children":6870},{"style":6449},[6871],{"type":50,"value":6872}," 0",{"type":44,"tag":135,"props":6874,"children":6875},{"style":6449},[6876],{"type":50,"value":6872},{"type":44,"tag":135,"props":6878,"children":6879},{"style":224},[6880],{"type":50,"value":6467},{"type":44,"tag":135,"props":6882,"children":6883},{"style":399},[6884],{"type":50,"value":6472},{"type":44,"tag":135,"props":6886,"children":6887},{"style":224},[6888],{"type":50,"value":407},{"type":44,"tag":135,"props":6890,"children":6891},{"style":6449},[6892],{"type":50,"value":6608},{"type":44,"tag":135,"props":6894,"children":6895},{"style":6449},[6896],{"type":50,"value":6462},{"type":44,"tag":135,"props":6898,"children":6899},{"style":6449},[6900],{"type":50,"value":6462},{"type":44,"tag":135,"props":6902,"children":6903},{"style":224},[6904],{"type":50,"value":425},{"type":44,"tag":135,"props":6906,"children":6907},{"style":383},[6908],{"type":50,"value":425},{"type":44,"tag":135,"props":6910,"children":6911},{"style":224},[6912],{"type":50,"value":430},{"type":44,"tag":135,"props":6914,"children":6915},{"class":137,"line":1167},[6916,6921,6925,6929,6933,6937,6942,6947,6952,6957,6962,6966,6970,6974,6979,6984,6989,6993,6997,7001,7005],{"type":44,"tag":135,"props":6917,"children":6918},{"style":383},[6919],{"type":50,"value":6920},"  --sf-text-2",{"type":44,"tag":135,"props":6922,"children":6923},{"style":224},[6924],{"type":50,"value":252},{"type":44,"tag":135,"props":6926,"children":6927},{"style":383},[6928],{"type":50,"value":6437},{"type":44,"tag":135,"props":6930,"children":6931},{"style":399},[6932],{"type":50,"value":6442},{"type":44,"tag":135,"props":6934,"children":6935},{"style":224},[6936],{"type":50,"value":407},{"type":44,"tag":135,"props":6938,"children":6939},{"style":6449},[6940],{"type":50,"value":6941},"60",{"type":44,"tag":135,"props":6943,"children":6944},{"style":6449},[6945],{"type":50,"value":6946}," 60",{"type":44,"tag":135,"props":6948,"children":6949},{"style":6449},[6950],{"type":50,"value":6951}," 67",{"type":44,"tag":135,"props":6953,"children":6954},{"style":383},[6955],{"type":50,"value":6956}," \u002F ",{"type":44,"tag":135,"props":6958,"children":6959},{"style":6449},[6960],{"type":50,"value":6961},"0.6",{"type":44,"tag":135,"props":6963,"children":6964},{"style":224},[6965],{"type":50,"value":6467},{"type":44,"tag":135,"props":6967,"children":6968},{"style":399},[6969],{"type":50,"value":6472},{"type":44,"tag":135,"props":6971,"children":6972},{"style":224},[6973],{"type":50,"value":407},{"type":44,"tag":135,"props":6975,"children":6976},{"style":6449},[6977],{"type":50,"value":6978},"235",{"type":44,"tag":135,"props":6980,"children":6981},{"style":6449},[6982],{"type":50,"value":6983}," 235",{"type":44,"tag":135,"props":6985,"children":6986},{"style":6449},[6987],{"type":50,"value":6988}," 245",{"type":44,"tag":135,"props":6990,"children":6991},{"style":383},[6992],{"type":50,"value":6956},{"type":44,"tag":135,"props":6994,"children":6995},{"style":6449},[6996],{"type":50,"value":6961},{"type":44,"tag":135,"props":6998,"children":6999},{"style":224},[7000],{"type":50,"value":425},{"type":44,"tag":135,"props":7002,"children":7003},{"style":383},[7004],{"type":50,"value":425},{"type":44,"tag":135,"props":7006,"children":7007},{"style":224},[7008],{"type":50,"value":430},{"type":44,"tag":135,"props":7010,"children":7011},{"class":137,"line":1188},[7012],{"type":44,"tag":135,"props":7013,"children":7014},{"emptyLinePlaceholder":489},[7015],{"type":50,"value":492},{"type":44,"tag":135,"props":7017,"children":7018},{"class":137,"line":1196},[7019],{"type":44,"tag":135,"props":7020,"children":7021},{"style":142},[7022],{"type":50,"value":7023},"  \u002F* Background colors *\u002F\n",{"type":44,"tag":135,"props":7025,"children":7026},{"class":137,"line":1848},[7027,7032,7036,7040,7044,7048,7052,7056,7060,7064,7068,7072,7076,7080,7084,7088,7092],{"type":44,"tag":135,"props":7028,"children":7029},{"style":383},[7030],{"type":50,"value":7031},"  --sf-bg",{"type":44,"tag":135,"props":7033,"children":7034},{"style":224},[7035],{"type":50,"value":252},{"type":44,"tag":135,"props":7037,"children":7038},{"style":383},[7039],{"type":50,"value":6437},{"type":44,"tag":135,"props":7041,"children":7042},{"style":399},[7043],{"type":50,"value":6442},{"type":44,"tag":135,"props":7045,"children":7046},{"style":224},[7047],{"type":50,"value":407},{"type":44,"tag":135,"props":7049,"children":7050},{"style":6449},[7051],{"type":50,"value":6608},{"type":44,"tag":135,"props":7053,"children":7054},{"style":6449},[7055],{"type":50,"value":6462},{"type":44,"tag":135,"props":7057,"children":7058},{"style":6449},[7059],{"type":50,"value":6462},{"type":44,"tag":135,"props":7061,"children":7062},{"style":224},[7063],{"type":50,"value":6467},{"type":44,"tag":135,"props":7065,"children":7066},{"style":399},[7067],{"type":50,"value":6472},{"type":44,"tag":135,"props":7069,"children":7070},{"style":224},[7071],{"type":50,"value":407},{"type":44,"tag":135,"props":7073,"children":7074},{"style":6449},[7075],{"type":50,"value":6452},{"type":44,"tag":135,"props":7077,"children":7078},{"style":6449},[7079],{"type":50,"value":6872},{"type":44,"tag":135,"props":7081,"children":7082},{"style":6449},[7083],{"type":50,"value":6872},{"type":44,"tag":135,"props":7085,"children":7086},{"style":224},[7087],{"type":50,"value":425},{"type":44,"tag":135,"props":7089,"children":7090},{"style":383},[7091],{"type":50,"value":425},{"type":44,"tag":135,"props":7093,"children":7094},{"style":224},[7095],{"type":50,"value":430},{"type":44,"tag":135,"props":7097,"children":7098},{"class":137,"line":1921},[7099,7104,7108,7112,7116,7120,7125,7130,7135,7139,7143,7147,7152,7157,7162,7166,7170],{"type":44,"tag":135,"props":7100,"children":7101},{"style":383},[7102],{"type":50,"value":7103},"  --sf-bg-2",{"type":44,"tag":135,"props":7105,"children":7106},{"style":224},[7107],{"type":50,"value":252},{"type":44,"tag":135,"props":7109,"children":7110},{"style":383},[7111],{"type":50,"value":6437},{"type":44,"tag":135,"props":7113,"children":7114},{"style":399},[7115],{"type":50,"value":6442},{"type":44,"tag":135,"props":7117,"children":7118},{"style":224},[7119],{"type":50,"value":407},{"type":44,"tag":135,"props":7121,"children":7122},{"style":6449},[7123],{"type":50,"value":7124},"242",{"type":44,"tag":135,"props":7126,"children":7127},{"style":6449},[7128],{"type":50,"value":7129}," 242",{"type":44,"tag":135,"props":7131,"children":7132},{"style":6449},[7133],{"type":50,"value":7134}," 247",{"type":44,"tag":135,"props":7136,"children":7137},{"style":224},[7138],{"type":50,"value":6467},{"type":44,"tag":135,"props":7140,"children":7141},{"style":399},[7142],{"type":50,"value":6472},{"type":44,"tag":135,"props":7144,"children":7145},{"style":224},[7146],{"type":50,"value":407},{"type":44,"tag":135,"props":7148,"children":7149},{"style":6449},[7150],{"type":50,"value":7151},"28",{"type":44,"tag":135,"props":7153,"children":7154},{"style":6449},[7155],{"type":50,"value":7156}," 28",{"type":44,"tag":135,"props":7158,"children":7159},{"style":6449},[7160],{"type":50,"value":7161}," 30",{"type":44,"tag":135,"props":7163,"children":7164},{"style":224},[7165],{"type":50,"value":425},{"type":44,"tag":135,"props":7167,"children":7168},{"style":383},[7169],{"type":50,"value":425},{"type":44,"tag":135,"props":7171,"children":7172},{"style":224},[7173],{"type":50,"value":430},{"type":44,"tag":135,"props":7175,"children":7176},{"class":137,"line":1929},[7177],{"type":44,"tag":135,"props":7178,"children":7179},{"style":224},[7180],{"type":50,"value":312},{"type":44,"tag":135,"props":7182,"children":7183},{"class":137,"line":1937},[7184],{"type":44,"tag":135,"props":7185,"children":7186},{"emptyLinePlaceholder":489},[7187],{"type":50,"value":492},{"type":44,"tag":135,"props":7189,"children":7190},{"class":137,"line":1976},[7191],{"type":44,"tag":135,"props":7192,"children":7193},{"style":142},[7194],{"type":50,"value":7195},"\u002F* iOS native colors via platformColor *\u002F\n",{"type":44,"tag":135,"props":7197,"children":7198},{"class":137,"line":2014},[7199,7203,7207],{"type":44,"tag":135,"props":7200,"children":7201},{"style":503},[7202],{"type":50,"value":938},{"type":44,"tag":135,"props":7204,"children":7205},{"style":383},[7206],{"type":50,"value":1081},{"type":44,"tag":135,"props":7208,"children":7209},{"style":224},[7210],{"type":50,"value":227},{"type":44,"tag":135,"props":7212,"children":7213},{"class":137,"line":2052},[7214,7218,7222],{"type":44,"tag":135,"props":7215,"children":7216},{"style":224},[7217],{"type":50,"value":955},{"type":44,"tag":135,"props":7219,"children":7220},{"style":239},[7221],{"type":50,"value":41},{"type":44,"tag":135,"props":7223,"children":7224},{"style":224},[7225],{"type":50,"value":257},{"type":44,"tag":135,"props":7227,"children":7228},{"class":137,"line":2090},[7229,7234,7238,7243],{"type":44,"tag":135,"props":7230,"children":7231},{"style":383},[7232],{"type":50,"value":7233},"    --sf-blue",{"type":44,"tag":135,"props":7235,"children":7236},{"style":224},[7237],{"type":50,"value":252},{"type":44,"tag":135,"props":7239,"children":7240},{"style":383},[7241],{"type":50,"value":7242}," platformColor(systemBlue)",{"type":44,"tag":135,"props":7244,"children":7245},{"style":224},[7246],{"type":50,"value":430},{"type":44,"tag":135,"props":7248,"children":7249},{"class":137,"line":2098},[7250,7255,7259,7264],{"type":44,"tag":135,"props":7251,"children":7252},{"style":383},[7253],{"type":50,"value":7254},"    --sf-green",{"type":44,"tag":135,"props":7256,"children":7257},{"style":224},[7258],{"type":50,"value":252},{"type":44,"tag":135,"props":7260,"children":7261},{"style":383},[7262],{"type":50,"value":7263}," platformColor(systemGreen)",{"type":44,"tag":135,"props":7265,"children":7266},{"style":224},[7267],{"type":50,"value":430},{"type":44,"tag":135,"props":7269,"children":7270},{"class":137,"line":2107},[7271,7276,7280,7285],{"type":44,"tag":135,"props":7272,"children":7273},{"style":383},[7274],{"type":50,"value":7275},"    --sf-red",{"type":44,"tag":135,"props":7277,"children":7278},{"style":224},[7279],{"type":50,"value":252},{"type":44,"tag":135,"props":7281,"children":7282},{"style":383},[7283],{"type":50,"value":7284}," platformColor(systemRed)",{"type":44,"tag":135,"props":7286,"children":7287},{"style":224},[7288],{"type":50,"value":430},{"type":44,"tag":135,"props":7290,"children":7291},{"class":137,"line":2129},[7292,7297,7301,7306],{"type":44,"tag":135,"props":7293,"children":7294},{"style":383},[7295],{"type":50,"value":7296},"    --sf-gray",{"type":44,"tag":135,"props":7298,"children":7299},{"style":224},[7300],{"type":50,"value":252},{"type":44,"tag":135,"props":7302,"children":7303},{"style":383},[7304],{"type":50,"value":7305}," platformColor(systemGray)",{"type":44,"tag":135,"props":7307,"children":7308},{"style":224},[7309],{"type":50,"value":430},{"type":44,"tag":135,"props":7311,"children":7312},{"class":137,"line":2174},[7313,7318,7322,7327],{"type":44,"tag":135,"props":7314,"children":7315},{"style":383},[7316],{"type":50,"value":7317},"    --sf-text",{"type":44,"tag":135,"props":7319,"children":7320},{"style":224},[7321],{"type":50,"value":252},{"type":44,"tag":135,"props":7323,"children":7324},{"style":383},[7325],{"type":50,"value":7326}," platformColor(label)",{"type":44,"tag":135,"props":7328,"children":7329},{"style":224},[7330],{"type":50,"value":430},{"type":44,"tag":135,"props":7332,"children":7333},{"class":137,"line":2188},[7334,7339,7343,7348],{"type":44,"tag":135,"props":7335,"children":7336},{"style":383},[7337],{"type":50,"value":7338},"    --sf-text-2",{"type":44,"tag":135,"props":7340,"children":7341},{"style":224},[7342],{"type":50,"value":252},{"type":44,"tag":135,"props":7344,"children":7345},{"style":383},[7346],{"type":50,"value":7347}," platformColor(secondaryLabel)",{"type":44,"tag":135,"props":7349,"children":7350},{"style":224},[7351],{"type":50,"value":430},{"type":44,"tag":135,"props":7353,"children":7354},{"class":137,"line":2260},[7355,7360,7364,7369],{"type":44,"tag":135,"props":7356,"children":7357},{"style":383},[7358],{"type":50,"value":7359},"    --sf-bg",{"type":44,"tag":135,"props":7361,"children":7362},{"style":224},[7363],{"type":50,"value":252},{"type":44,"tag":135,"props":7365,"children":7366},{"style":383},[7367],{"type":50,"value":7368}," platformColor(systemBackground)",{"type":44,"tag":135,"props":7370,"children":7371},{"style":224},[7372],{"type":50,"value":430},{"type":44,"tag":135,"props":7374,"children":7375},{"class":137,"line":2268},[7376,7381,7385,7390],{"type":44,"tag":135,"props":7377,"children":7378},{"style":383},[7379],{"type":50,"value":7380},"    --sf-bg-2",{"type":44,"tag":135,"props":7382,"children":7383},{"style":224},[7384],{"type":50,"value":252},{"type":44,"tag":135,"props":7386,"children":7387},{"style":383},[7388],{"type":50,"value":7389}," platformColor(secondarySystemBackground)",{"type":44,"tag":135,"props":7391,"children":7392},{"style":224},[7393],{"type":50,"value":430},{"type":44,"tag":135,"props":7395,"children":7396},{"class":137,"line":2277},[7397],{"type":44,"tag":135,"props":7398,"children":7399},{"style":224},[7400],{"type":50,"value":303},{"type":44,"tag":135,"props":7402,"children":7403},{"class":137,"line":2331},[7404],{"type":44,"tag":135,"props":7405,"children":7406},{"style":224},[7407],{"type":50,"value":312},{"type":44,"tag":135,"props":7409,"children":7410},{"class":137,"line":2352},[7411],{"type":44,"tag":135,"props":7412,"children":7413},{"emptyLinePlaceholder":489},[7414],{"type":50,"value":492},{"type":44,"tag":135,"props":7416,"children":7417},{"class":137,"line":2360},[7418],{"type":44,"tag":135,"props":7419,"children":7420},{"style":142},[7421],{"type":50,"value":7422},"\u002F* Register as Tailwind theme colors *\u002F\n",{"type":44,"tag":135,"props":7424,"children":7425},{"class":137,"line":2368},[7426,7430,7434],{"type":44,"tag":135,"props":7427,"children":7428},{"style":503},[7429],{"type":50,"value":5915},{"type":44,"tag":135,"props":7431,"children":7432},{"style":383},[7433],{"type":50,"value":5920},{"type":44,"tag":135,"props":7435,"children":7436},{"style":224},[7437],{"type":50,"value":227},{"type":44,"tag":135,"props":7439,"children":7440},{"class":137,"line":2418},[7441,7445],{"type":44,"tag":135,"props":7442,"children":7443},{"style":503},[7444],{"type":50,"value":5932},{"type":44,"tag":135,"props":7446,"children":7447},{"style":224},[7448],{"type":50,"value":257},{"type":44,"tag":135,"props":7450,"children":7451},{"class":137,"line":2487},[7452],{"type":44,"tag":135,"props":7453,"children":7454},{"style":383},[7455],{"type":50,"value":7456},"    --color-sf-blue: var(--sf-blue);\n",{"type":44,"tag":135,"props":7458,"children":7459},{"class":137,"line":2495},[7460],{"type":44,"tag":135,"props":7461,"children":7462},{"style":383},[7463],{"type":50,"value":7464},"    --color-sf-green: var(--sf-green);\n",{"type":44,"tag":135,"props":7466,"children":7467},{"class":137,"line":2534},[7468],{"type":44,"tag":135,"props":7469,"children":7470},{"style":383},[7471],{"type":50,"value":7472},"    --color-sf-red: var(--sf-red);\n",{"type":44,"tag":135,"props":7474,"children":7475},{"class":137,"line":2542},[7476],{"type":44,"tag":135,"props":7477,"children":7478},{"style":383},[7479],{"type":50,"value":7480},"    --color-sf-gray: var(--sf-gray);\n",{"type":44,"tag":135,"props":7482,"children":7483},{"class":137,"line":2551},[7484],{"type":44,"tag":135,"props":7485,"children":7486},{"style":383},[7487],{"type":50,"value":7488},"    --color-sf-text: var(--sf-text);\n",{"type":44,"tag":135,"props":7490,"children":7491},{"class":137,"line":2576},[7492],{"type":44,"tag":135,"props":7493,"children":7494},{"style":383},[7495],{"type":50,"value":7496},"    --color-sf-text-2: var(--sf-text-2);\n",{"type":44,"tag":135,"props":7498,"children":7499},{"class":137,"line":2636},[7500],{"type":44,"tag":135,"props":7501,"children":7502},{"style":383},[7503],{"type":50,"value":7504},"    --color-sf-bg: var(--sf-bg);\n",{"type":44,"tag":135,"props":7506,"children":7507},{"class":137,"line":2652},[7508],{"type":44,"tag":135,"props":7509,"children":7510},{"style":383},[7511],{"type":50,"value":7512},"    --color-sf-bg-2: var(--sf-bg-2);\n",{"type":44,"tag":135,"props":7514,"children":7515},{"class":137,"line":2721},[7516],{"type":44,"tag":135,"props":7517,"children":7518},{"style":224},[7519],{"type":50,"value":303},{"type":44,"tag":135,"props":7521,"children":7522},{"class":137,"line":2729},[7523],{"type":44,"tag":135,"props":7524,"children":7525},{"style":224},[7526],{"type":50,"value":312},{"type":44,"tag":53,"props":7528,"children":7529},{},[7530],{"type":50,"value":7531},"Then use in components:",{"type":44,"tag":123,"props":7533,"children":7535},{"className":1334,"code":7534,"language":1336,"meta":128,"style":128},"\u003CText className=\"text-sf-text\">Primary text\u003C\u002FText>\n\u003CText className=\"text-sf-text-2\">Secondary text\u003C\u002FText>\n\u003CView className=\"bg-sf-bg\">...\u003C\u002FView>\n",[7536],{"type":44,"tag":131,"props":7537,"children":7538},{"__ignoreMap":128},[7539,7593,7646],{"type":44,"tag":135,"props":7540,"children":7541},{"class":137,"line":138},[7542,7547,7551,7555,7559,7563,7568,7572,7576,7581,7585,7589],{"type":44,"tag":135,"props":7543,"children":7544},{"style":224},[7545],{"type":50,"value":7546},"\u003C",{"type":44,"tag":135,"props":7548,"children":7549},{"style":152},[7550],{"type":50,"value":2735},{"type":44,"tag":135,"props":7552,"children":7553},{"style":239},[7554],{"type":50,"value":1813},{"type":44,"tag":135,"props":7556,"children":7557},{"style":224},[7558],{"type":50,"value":548},{"type":44,"tag":135,"props":7560,"children":7561},{"style":224},[7562],{"type":50,"value":247},{"type":44,"tag":135,"props":7564,"children":7565},{"style":158},[7566],{"type":50,"value":7567},"text-sf-text",{"type":44,"tag":135,"props":7569,"children":7570},{"style":224},[7571],{"type":50,"value":247},{"type":44,"tag":135,"props":7573,"children":7574},{"style":224},[7575],{"type":50,"value":1799},{"type":44,"tag":135,"props":7577,"children":7578},{"style":383},[7579],{"type":50,"value":7580},"Primary text",{"type":44,"tag":135,"props":7582,"children":7583},{"style":224},[7584],{"type":50,"value":5740},{"type":44,"tag":135,"props":7586,"children":7587},{"style":152},[7588],{"type":50,"value":2735},{"type":44,"tag":135,"props":7590,"children":7591},{"style":224},[7592],{"type":50,"value":3945},{"type":44,"tag":135,"props":7594,"children":7595},{"class":137,"line":148},[7596,7600,7604,7608,7612,7616,7621,7625,7629,7634,7638,7642],{"type":44,"tag":135,"props":7597,"children":7598},{"style":224},[7599],{"type":50,"value":7546},{"type":44,"tag":135,"props":7601,"children":7602},{"style":152},[7603],{"type":50,"value":2735},{"type":44,"tag":135,"props":7605,"children":7606},{"style":239},[7607],{"type":50,"value":1813},{"type":44,"tag":135,"props":7609,"children":7610},{"style":224},[7611],{"type":50,"value":548},{"type":44,"tag":135,"props":7613,"children":7614},{"style":224},[7615],{"type":50,"value":247},{"type":44,"tag":135,"props":7617,"children":7618},{"style":158},[7619],{"type":50,"value":7620},"text-sf-text-2",{"type":44,"tag":135,"props":7622,"children":7623},{"style":224},[7624],{"type":50,"value":247},{"type":44,"tag":135,"props":7626,"children":7627},{"style":224},[7628],{"type":50,"value":1799},{"type":44,"tag":135,"props":7630,"children":7631},{"style":383},[7632],{"type":50,"value":7633},"Secondary text",{"type":44,"tag":135,"props":7635,"children":7636},{"style":224},[7637],{"type":50,"value":5740},{"type":44,"tag":135,"props":7639,"children":7640},{"style":152},[7641],{"type":50,"value":2735},{"type":44,"tag":135,"props":7643,"children":7644},{"style":224},[7645],{"type":50,"value":3945},{"type":44,"tag":135,"props":7647,"children":7648},{"class":137,"line":230},[7649,7653,7657,7661,7665,7669,7674,7678,7682,7687,7691,7695],{"type":44,"tag":135,"props":7650,"children":7651},{"style":224},[7652],{"type":50,"value":7546},{"type":44,"tag":135,"props":7654,"children":7655},{"style":152},[7656],{"type":50,"value":2501},{"type":44,"tag":135,"props":7658,"children":7659},{"style":239},[7660],{"type":50,"value":1813},{"type":44,"tag":135,"props":7662,"children":7663},{"style":224},[7664],{"type":50,"value":548},{"type":44,"tag":135,"props":7666,"children":7667},{"style":224},[7668],{"type":50,"value":247},{"type":44,"tag":135,"props":7670,"children":7671},{"style":158},[7672],{"type":50,"value":7673},"bg-sf-bg",{"type":44,"tag":135,"props":7675,"children":7676},{"style":224},[7677],{"type":50,"value":247},{"type":44,"tag":135,"props":7679,"children":7680},{"style":224},[7681],{"type":50,"value":1799},{"type":44,"tag":135,"props":7683,"children":7684},{"style":383},[7685],{"type":50,"value":7686},"...",{"type":44,"tag":135,"props":7688,"children":7689},{"style":224},[7690],{"type":50,"value":5740},{"type":44,"tag":135,"props":7692,"children":7693},{"style":152},[7694],{"type":50,"value":2501},{"type":44,"tag":135,"props":7696,"children":7697},{"style":224},[7698],{"type":50,"value":3945},{"type":44,"tag":59,"props":7700,"children":7702},{"id":7701},"using-css-variables-in-javascript",[7703],{"type":50,"value":7704},"Using CSS Variables in JavaScript",{"type":44,"tag":53,"props":7706,"children":7707},{},[7708,7710,7716],{"type":50,"value":7709},"Use the ",{"type":44,"tag":131,"props":7711,"children":7713},{"className":7712},[],[7714],{"type":50,"value":7715},"useCSSVariable",{"type":50,"value":7717}," hook:",{"type":44,"tag":123,"props":7719,"children":7721},{"className":1334,"code":7720,"language":1336,"meta":128,"style":128},"import { useCSSVariable } from \"@\u002Ftw\";\n\nfunction MyComponent() {\n  const blue = useCSSVariable(\"--sf-blue\");\n\n  return \u003CView style={{ borderColor: blue }} \u002F>;\n}\n",[7722],{"type":44,"tag":131,"props":7723,"children":7724},{"__ignoreMap":128},[7725,7765,7772,7792,7837,7844,7888],{"type":44,"tag":135,"props":7726,"children":7727},{"class":137,"line":138},[7728,7732,7736,7741,7745,7749,7753,7757,7761],{"type":44,"tag":135,"props":7729,"children":7730},{"style":503},[7731],{"type":50,"value":1348},{"type":44,"tag":135,"props":7733,"children":7734},{"style":224},[7735],{"type":50,"value":380},{"type":44,"tag":135,"props":7737,"children":7738},{"style":383},[7739],{"type":50,"value":7740}," useCSSVariable",{"type":44,"tag":135,"props":7742,"children":7743},{"style":224},[7744],{"type":50,"value":1451},{"type":44,"tag":135,"props":7746,"children":7747},{"style":503},[7748],{"type":50,"value":1398},{"type":44,"tag":135,"props":7750,"children":7751},{"style":224},[7752],{"type":50,"value":284},{"type":44,"tag":135,"props":7754,"children":7755},{"style":158},[7756],{"type":50,"value":5564},{"type":44,"tag":135,"props":7758,"children":7759},{"style":224},[7760],{"type":50,"value":247},{"type":44,"tag":135,"props":7762,"children":7763},{"style":224},[7764],{"type":50,"value":430},{"type":44,"tag":135,"props":7766,"children":7767},{"class":137,"line":148},[7768],{"type":44,"tag":135,"props":7769,"children":7770},{"emptyLinePlaceholder":489},[7771],{"type":50,"value":492},{"type":44,"tag":135,"props":7773,"children":7774},{"class":137,"line":230},[7775,7779,7784,7788],{"type":44,"tag":135,"props":7776,"children":7777},{"style":239},[7778],{"type":50,"value":3898},{"type":44,"tag":135,"props":7780,"children":7781},{"style":399},[7782],{"type":50,"value":7783}," MyComponent",{"type":44,"tag":135,"props":7785,"children":7786},{"style":224},[7787],{"type":50,"value":5605},{"type":44,"tag":135,"props":7789,"children":7790},{"style":224},[7791],{"type":50,"value":257},{"type":44,"tag":135,"props":7793,"children":7794},{"class":137,"line":260},[7795,7799,7804,7808,7812,7816,7820,7825,7829,7833],{"type":44,"tag":135,"props":7796,"children":7797},{"style":239},[7798],{"type":50,"value":3966},{"type":44,"tag":135,"props":7800,"children":7801},{"style":383},[7802],{"type":50,"value":7803}," blue",{"type":44,"tag":135,"props":7805,"children":7806},{"style":224},[7807],{"type":50,"value":396},{"type":44,"tag":135,"props":7809,"children":7810},{"style":399},[7811],{"type":50,"value":7740},{"type":44,"tag":135,"props":7813,"children":7814},{"style":618},[7815],{"type":50,"value":407},{"type":44,"tag":135,"props":7817,"children":7818},{"style":224},[7819],{"type":50,"value":247},{"type":44,"tag":135,"props":7821,"children":7822},{"style":158},[7823],{"type":50,"value":7824},"--sf-blue",{"type":44,"tag":135,"props":7826,"children":7827},{"style":224},[7828],{"type":50,"value":247},{"type":44,"tag":135,"props":7830,"children":7831},{"style":618},[7832],{"type":50,"value":425},{"type":44,"tag":135,"props":7834,"children":7835},{"style":224},[7836],{"type":50,"value":430},{"type":44,"tag":135,"props":7838,"children":7839},{"class":137,"line":297},[7840],{"type":44,"tag":135,"props":7841,"children":7842},{"emptyLinePlaceholder":489},[7843],{"type":50,"value":492},{"type":44,"tag":135,"props":7845,"children":7846},{"class":137,"line":306},[7847,7851,7856,7860,7865,7869,7874,7878,7883],{"type":44,"tag":135,"props":7848,"children":7849},{"style":503},[7850],{"type":50,"value":1854},{"type":44,"tag":135,"props":7852,"children":7853},{"style":224},[7854],{"type":50,"value":7855}," \u003C",{"type":44,"tag":135,"props":7857,"children":7858},{"style":152},[7859],{"type":50,"value":2501},{"type":44,"tag":135,"props":7861,"children":7862},{"style":239},[7863],{"type":50,"value":7864}," style",{"type":44,"tag":135,"props":7866,"children":7867},{"style":224},[7868],{"type":50,"value":5798},{"type":44,"tag":135,"props":7870,"children":7871},{"style":618},[7872],{"type":50,"value":7873}," borderColor",{"type":44,"tag":135,"props":7875,"children":7876},{"style":224},[7877],{"type":50,"value":252},{"type":44,"tag":135,"props":7879,"children":7880},{"style":383},[7881],{"type":50,"value":7882}," blue ",{"type":44,"tag":135,"props":7884,"children":7885},{"style":224},[7886],{"type":50,"value":7887},"}} \u002F>;\n",{"type":44,"tag":135,"props":7889,"children":7890},{"class":137,"line":565},[7891],{"type":44,"tag":135,"props":7892,"children":7893},{"style":224},[7894],{"type":50,"value":312},{"type":44,"tag":59,"props":7896,"children":7898},{"id":7897},"key-differences-from-nativewind-v4-tailwind-v3",[7899],{"type":50,"value":7900},"Key Differences from NativeWind v4 \u002F Tailwind v3",{"type":44,"tag":7902,"props":7903,"children":7904},"ol",{},[7905,7915,7938,7963,7985,8003],{"type":44,"tag":75,"props":7906,"children":7907},{},[7908,7913],{"type":44,"tag":79,"props":7909,"children":7910},{},[7911],{"type":50,"value":7912},"No babel.config.js",{"type":50,"value":7914}," - Configuration is now CSS-first",{"type":44,"tag":75,"props":7916,"children":7917},{},[7918,7923,7925,7930,7932],{"type":44,"tag":79,"props":7919,"children":7920},{},[7921],{"type":50,"value":7922},"PostCSS plugin",{"type":50,"value":7924}," - Uses ",{"type":44,"tag":131,"props":7926,"children":7928},{"className":7927},[],[7929],{"type":50,"value":113},{"type":50,"value":7931}," instead of ",{"type":44,"tag":131,"props":7933,"children":7935},{"className":7934},[],[7936],{"type":50,"value":7937},"tailwindcss",{"type":44,"tag":75,"props":7939,"children":7940},{},[7941,7946,7948,7954,7955,7961],{"type":44,"tag":79,"props":7942,"children":7943},{},[7944],{"type":50,"value":7945},"CSS imports",{"type":50,"value":7947}," - Use ",{"type":44,"tag":131,"props":7949,"children":7951},{"className":7950},[],[7952],{"type":50,"value":7953},"@import \"tailwindcss\u002F...\"",{"type":50,"value":7931},{"type":44,"tag":131,"props":7956,"children":7958},{"className":7957},[],[7959],{"type":50,"value":7960},"@tailwind",{"type":50,"value":7962}," directives",{"type":44,"tag":75,"props":7964,"children":7965},{},[7966,7971,7972,7977,7979],{"type":44,"tag":79,"props":7967,"children":7968},{},[7969],{"type":50,"value":7970},"Theme config",{"type":50,"value":7947},{"type":44,"tag":131,"props":7973,"children":7975},{"className":7974},[],[7976],{"type":50,"value":5899},{"type":50,"value":7978}," in CSS instead of ",{"type":44,"tag":131,"props":7980,"children":7982},{"className":7981},[],[7983],{"type":50,"value":7984},"tailwind.config.js",{"type":44,"tag":75,"props":7986,"children":7987},{},[7988,7993,7995,8001],{"type":44,"tag":79,"props":7989,"children":7990},{},[7991],{"type":50,"value":7992},"Component wrappers",{"type":50,"value":7994}," - Must wrap components with ",{"type":44,"tag":131,"props":7996,"children":7998},{"className":7997},[],[7999],{"type":50,"value":8000},"useCssElement",{"type":50,"value":8002}," for className support",{"type":44,"tag":75,"props":8004,"children":8005},{},[8006,8011,8012,8018,8020,8026],{"type":44,"tag":79,"props":8007,"children":8008},{},[8009],{"type":50,"value":8010},"Metro config",{"type":50,"value":7947},{"type":44,"tag":131,"props":8013,"children":8015},{"className":8014},[],[8016],{"type":50,"value":8017},"withNativewind",{"type":50,"value":8019}," with different options (",{"type":44,"tag":131,"props":8021,"children":8023},{"className":8022},[],[8024],{"type":50,"value":8025},"inlineVariables: false",{"type":50,"value":425},{"type":44,"tag":59,"props":8028,"children":8030},{"id":8029},"troubleshooting",[8031],{"type":50,"value":8032},"Troubleshooting",{"type":44,"tag":333,"props":8034,"children":8036},{"id":8035},"styles-not-applying",[8037],{"type":50,"value":8038},"Styles not applying",{"type":44,"tag":7902,"props":8040,"children":8041},{},[8042,8047,8057],{"type":44,"tag":75,"props":8043,"children":8044},{},[8045],{"type":50,"value":8046},"Ensure you have the CSS file imported in your app entry",{"type":44,"tag":75,"props":8048,"children":8049},{},[8050,8052],{"type":50,"value":8051},"Check that components are wrapped with ",{"type":44,"tag":131,"props":8053,"children":8055},{"className":8054},[],[8056],{"type":50,"value":8000},{"type":44,"tag":75,"props":8058,"children":8059},{},[8060,8062,8067],{"type":50,"value":8061},"Verify Metro config has ",{"type":44,"tag":131,"props":8063,"children":8065},{"className":8064},[],[8066],{"type":50,"value":8017},{"type":50,"value":8068}," applied",{"type":44,"tag":333,"props":8070,"children":8072},{"id":8071},"platform-colors-not-working",[8073],{"type":50,"value":8074},"Platform colors not working",{"type":44,"tag":7902,"props":8076,"children":8077},{},[8078,8099],{"type":44,"tag":75,"props":8079,"children":8080},{},[8081,8083,8089,8091,8097],{"type":50,"value":8082},"Use ",{"type":44,"tag":131,"props":8084,"children":8086},{"className":8085},[],[8087],{"type":50,"value":8088},"platformColor()",{"type":50,"value":8090}," in ",{"type":44,"tag":131,"props":8092,"children":8094},{"className":8093},[],[8095],{"type":50,"value":8096},"@media ios",{"type":50,"value":8098}," blocks",{"type":44,"tag":75,"props":8100,"children":8101},{},[8102,8104,8110],{"type":50,"value":8103},"Fall back to ",{"type":44,"tag":131,"props":8105,"children":8107},{"className":8106},[],[8108],{"type":50,"value":8109},"light-dark()",{"type":50,"value":8111}," for web\u002FAndroid",{"type":44,"tag":333,"props":8113,"children":8115},{"id":8114},"typescript-errors",[8116],{"type":50,"value":8117},"TypeScript errors",{"type":44,"tag":53,"props":8119,"children":8120},{},[8121],{"type":50,"value":8122},"Add className to component props:",{"type":44,"tag":123,"props":8124,"children":8126},{"className":1334,"code":8125,"language":1336,"meta":128,"style":128},"type Props = React.ComponentProps\u003Ctypeof RNView> & { className?: string };\n",[8127],{"type":44,"tag":131,"props":8128,"children":8129},{"__ignoreMap":128},[8130],{"type":44,"tag":135,"props":8131,"children":8132},{"class":137,"line":138},[8133,8137,8142,8146,8150,8154,8158,8162,8166,8170,8174,8178,8182,8186,8190],{"type":44,"tag":135,"props":8134,"children":8135},{"style":239},[8136],{"type":50,"value":512},{"type":44,"tag":135,"props":8138,"children":8139},{"style":152},[8140],{"type":50,"value":8141}," Props",{"type":44,"tag":135,"props":8143,"children":8144},{"style":224},[8145],{"type":50,"value":396},{"type":44,"tag":135,"props":8147,"children":8148},{"style":152},[8149],{"type":50,"value":1775},{"type":44,"tag":135,"props":8151,"children":8152},{"style":224},[8153],{"type":50,"value":1780},{"type":44,"tag":135,"props":8155,"children":8156},{"style":152},[8157],{"type":50,"value":1785},{"type":44,"tag":135,"props":8159,"children":8160},{"style":224},[8161],{"type":50,"value":1790},{"type":44,"tag":135,"props":8163,"children":8164},{"style":383},[8165],{"type":50,"value":1567},{"type":44,"tag":135,"props":8167,"children":8168},{"style":224},[8169],{"type":50,"value":1799},{"type":44,"tag":135,"props":8171,"children":8172},{"style":224},[8173],{"type":50,"value":1804},{"type":44,"tag":135,"props":8175,"children":8176},{"style":224},[8177],{"type":50,"value":380},{"type":44,"tag":135,"props":8179,"children":8180},{"style":618},[8181],{"type":50,"value":1813},{"type":44,"tag":135,"props":8183,"children":8184},{"style":224},[8185],{"type":50,"value":1818},{"type":44,"tag":135,"props":8187,"children":8188},{"style":152},[8189],{"type":50,"value":1823},{"type":44,"tag":135,"props":8191,"children":8192},{"style":224},[8193],{"type":50,"value":8194}," };\n",{"type":44,"tag":59,"props":8196,"children":8198},{"id":8197},"submitting-feedback",[8199],{"type":50,"value":8200},"Submitting Feedback",{"type":44,"tag":53,"props":8202,"children":8203},{},[8204],{"type":50,"value":8205},"If you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:",{"type":44,"tag":123,"props":8207,"children":8209},{"className":125,"code":8208,"language":127,"meta":128,"style":128},"npx --yes submit-expo-feedback@latest --category skills --subject \"expo-tailwind-setup\" \"\u003Cactionable feedback>\"\n",[8210],{"type":44,"tag":131,"props":8211,"children":8212},{"__ignoreMap":128},[8213],{"type":44,"tag":135,"props":8214,"children":8215},{"class":137,"line":138},[8216,8220,8225,8230,8235,8240,8245,8249,8253,8257,8261,8266],{"type":44,"tag":135,"props":8217,"children":8218},{"style":152},[8219],{"type":50,"value":155},{"type":44,"tag":135,"props":8221,"children":8222},{"style":158},[8223],{"type":50,"value":8224}," --yes",{"type":44,"tag":135,"props":8226,"children":8227},{"style":158},[8228],{"type":50,"value":8229}," submit-expo-feedback@latest",{"type":44,"tag":135,"props":8231,"children":8232},{"style":158},[8233],{"type":50,"value":8234}," --category",{"type":44,"tag":135,"props":8236,"children":8237},{"style":158},[8238],{"type":50,"value":8239}," skills",{"type":44,"tag":135,"props":8241,"children":8242},{"style":158},[8243],{"type":50,"value":8244}," --subject",{"type":44,"tag":135,"props":8246,"children":8247},{"style":224},[8248],{"type":50,"value":284},{"type":44,"tag":135,"props":8250,"children":8251},{"style":158},[8252],{"type":50,"value":4},{"type":44,"tag":135,"props":8254,"children":8255},{"style":224},[8256],{"type":50,"value":247},{"type":44,"tag":135,"props":8258,"children":8259},{"style":224},[8260],{"type":50,"value":284},{"type":44,"tag":135,"props":8262,"children":8263},{"style":158},[8264],{"type":50,"value":8265},"\u003Cactionable feedback>",{"type":44,"tag":135,"props":8267,"children":8268},{"style":224},[8269],{"type":50,"value":294},{"type":44,"tag":53,"props":8271,"children":8272},{},[8273],{"type":50,"value":8274},"Only submit when you have something specific and actionable to report. Include as much relevant context as possible.",{"type":44,"tag":1902,"props":8276,"children":8277},{},[8278],{"type":50,"value":8279},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":8281,"total":1196},[8282,8300,8313,8327,8341,8355,8373],{"slug":8283,"name":8283,"fn":8284,"description":8285,"org":8286,"tags":8287,"stars":26,"repoUrl":27,"updatedAt":8299},"eas-app-stores","deploy and submit Expo apps to stores","EAS service (paid). Deploy Expo apps to the app stores with EAS - build and submit to the iOS App Store, Google Play Store, and TestFlight, configure eas.json build and submit profiles, manage app versions and build numbers, and publish App Store metadata and ASO. Use whenever the user wants to deploy, release, or ship an app to production or the app stores, is preparing a production build, running eas build or eas submit, shipping to TestFlight, bumping version or build numbers, or setting up store listing metadata. For deploying an Expo website or API routes, use the eas-hosting skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8288,8291,8294,8295,8298],{"name":8289,"slug":8290,"type":13},"Android","android",{"name":8292,"slug":8293,"type":13},"Deployment","deployment",{"name":9,"slug":8,"type":13},{"name":8296,"slug":8297,"type":13},"iOS","ios",{"name":15,"slug":16,"type":13},"2026-07-24T05:36:44.164663",{"slug":8301,"name":8301,"fn":8302,"description":8303,"org":8304,"tags":8305,"stars":26,"repoUrl":27,"updatedAt":8312},"eas-hosting","deploy Expo websites to EAS Hosting","EAS service (paid). Deploy Expo websites and Expo Router API routes to EAS Hosting - export the web bundle, run eas deploy for production and PR preview URLs, manage environment secrets and custom domains, and work within the Cloudflare Workers runtime. Also covers authoring API routes (+api.ts handlers, HTTP methods, request handling, CORS). Use when deploying an Expo web app or API routes, setting up EAS Hosting, or configuring hosting environments and domains. Not for native builds or store releases - use the eas-app-stores skill for those.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8306,8307,8308,8309],{"name":8292,"slug":8293,"type":13},{"name":9,"slug":8,"type":13},{"name":21,"slug":22,"type":13},{"name":8310,"slug":8311,"type":13},"Web Development","web-development","2026-07-24T05:36:40.193701",{"slug":8314,"name":8314,"fn":8315,"description":8316,"org":8317,"tags":8318,"stars":26,"repoUrl":27,"updatedAt":8326},"eas-observe","configure EAS Observe for Expo apps","EAS service (paid). Use for anything related to EAS Observe - adding `expo-observe` to an Expo project (AppMetricsRoot\u002FObserveRoot HOC, markInteractive, the useObserve hook, the Expo Router \u002F React Navigation integrations for per-route metrics, and user-defined events via `Observe.logEvent`), querying via the EAS CLI (`eas observe:metrics-summary`, `observe:metrics`, `observe:routes`, `observe:events`, `observe:versions`), or interpreting the resulting metrics (cold\u002Fwarm launch, TTR, TTI, navigation cold\u002Fwarm TTR, update download, and the TTI frameRate params for triaging slow startups).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8319,8320,8321,8324],{"name":9,"slug":8,"type":13},{"name":15,"slug":16,"type":13},{"name":8322,"slug":8323,"type":13},"Observability","observability",{"name":8325,"slug":1708,"type":13},"React Native","2026-07-24T05:36:45.220605",{"slug":8328,"name":8328,"fn":8329,"description":8330,"org":8331,"tags":8332,"stars":26,"repoUrl":27,"updatedAt":8340},"eas-simulator","run and control remote iOS and Android simulators","EAS service (paid). Run and control a user's app on a remote iOS\u002FAndroid simulator hosted on EAS cloud. Read before running any `eas simulator:*` commands - it has the current syntax for this experimental API. Use whenever the user needs a simulator they can't run locally - 'run my app on a cloud simulator', 'use eas simulator to run\u002Finstall\u002Fscreenshot my app', 'I'm on Linux\u002FCursor and need an iOS device', 'no sim on this box \u002F headless CI', 'let an agent click through my app and screenshot it', 'test my dev build on a remote sim with live reload', 'stream a sim to my browser' - even when they don't say 'EAS Simulator' or 'cloud'. On a host WITHOUT a local simulator (Linux, CI, cloud sandbox) it's the default; on macOS, do NOT auto-trigger for a plain 'run on the simulator' - use it only for a cloud\u002Fremote\u002Fshareable sim, an iOS version they lack, or an agent-driven session. NOT for local sims (expo run:ios, Xcode, Android Studio), EAS Build\u002FUpdate, web preview, or physical devices.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8333,8334,8337,8338,8339],{"name":8289,"slug":8290,"type":13},{"name":8335,"slug":8336,"type":13},"CLI","cli",{"name":9,"slug":8,"type":13},{"name":8296,"slug":8297,"type":13},{"name":15,"slug":16,"type":13},"2026-07-31T05:52:18.602058",{"slug":8342,"name":8342,"fn":8343,"description":8344,"org":8345,"tags":8346,"stars":26,"repoUrl":27,"updatedAt":8354},"eas-update-insights","check health of EAS Updates","EAS service (paid). Check the health of published EAS Update: crash rates, install\u002Flaunch counts, unique users, payload size, and the split between embedded and OTA users per channel. Use when the user asks how an update is performing, whether a rollout is healthy, how many users are on the embedded build vs OTA, or wants to gate CI on update health.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8347,8350,8351,8352,8353],{"name":8348,"slug":8349,"type":13},"Analytics","analytics",{"name":8292,"slug":8293,"type":13},{"name":9,"slug":8,"type":13},{"name":15,"slug":16,"type":13},{"name":8322,"slug":8323,"type":13},"2026-07-24T05:36:50.17095",{"slug":8356,"name":8356,"fn":8357,"description":8358,"org":8359,"tags":8360,"stars":26,"repoUrl":27,"updatedAt":8372},"eas-workflows","configure EAS workflows for Expo projects","EAS service (paid). Helps understand and write EAS workflow YAML files for Expo projects. Use this skill when the user asks about CI\u002FCD or workflows in an Expo or EAS context, mentions .eas\u002Fworkflows\u002F, or wants help with EAS build pipelines or deployment automation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8361,8364,8367,8368,8369],{"name":8362,"slug":8363,"type":13},"Automation","automation",{"name":8365,"slug":8366,"type":13},"CI\u002FCD","ci-cd",{"name":8292,"slug":8293,"type":13},{"name":9,"slug":8,"type":13},{"name":8370,"slug":8371,"type":13},"YAML","yaml","2026-07-24T05:36:43.205514",{"slug":8374,"name":8374,"fn":8375,"description":8376,"org":8377,"tags":8378,"stars":26,"repoUrl":27,"updatedAt":8383},"expo-app-clip","add iOS App Clip targets to Expo","Framework (OSS). Add an iOS App Clip target to an Expo app. Use when the user mentions App Clip, AASA, apple-app-site-association, appclips, smart app banner, or wants to ship a lightweight iOS Clip invoked from a URL alongside their parent app.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8379,8380,8381,8382],{"name":9,"slug":8,"type":13},{"name":8296,"slug":8297,"type":13},{"name":15,"slug":16,"type":13},{"name":8325,"slug":1708,"type":13},"2026-07-24T05:36:46.195935",{"items":8385,"total":1921},[8386,8394,8401,8408,8416,8424,8432,8439,8454,8471,8486,8497],{"slug":8283,"name":8283,"fn":8284,"description":8285,"org":8387,"tags":8388,"stars":26,"repoUrl":27,"updatedAt":8299},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8389,8390,8391,8392,8393],{"name":8289,"slug":8290,"type":13},{"name":8292,"slug":8293,"type":13},{"name":9,"slug":8,"type":13},{"name":8296,"slug":8297,"type":13},{"name":15,"slug":16,"type":13},{"slug":8301,"name":8301,"fn":8302,"description":8303,"org":8395,"tags":8396,"stars":26,"repoUrl":27,"updatedAt":8312},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8397,8398,8399,8400],{"name":8292,"slug":8293,"type":13},{"name":9,"slug":8,"type":13},{"name":21,"slug":22,"type":13},{"name":8310,"slug":8311,"type":13},{"slug":8314,"name":8314,"fn":8315,"description":8316,"org":8402,"tags":8403,"stars":26,"repoUrl":27,"updatedAt":8326},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8404,8405,8406,8407],{"name":9,"slug":8,"type":13},{"name":15,"slug":16,"type":13},{"name":8322,"slug":8323,"type":13},{"name":8325,"slug":1708,"type":13},{"slug":8328,"name":8328,"fn":8329,"description":8330,"org":8409,"tags":8410,"stars":26,"repoUrl":27,"updatedAt":8340},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8411,8412,8413,8414,8415],{"name":8289,"slug":8290,"type":13},{"name":8335,"slug":8336,"type":13},{"name":9,"slug":8,"type":13},{"name":8296,"slug":8297,"type":13},{"name":15,"slug":16,"type":13},{"slug":8342,"name":8342,"fn":8343,"description":8344,"org":8417,"tags":8418,"stars":26,"repoUrl":27,"updatedAt":8354},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8419,8420,8421,8422,8423],{"name":8348,"slug":8349,"type":13},{"name":8292,"slug":8293,"type":13},{"name":9,"slug":8,"type":13},{"name":15,"slug":16,"type":13},{"name":8322,"slug":8323,"type":13},{"slug":8356,"name":8356,"fn":8357,"description":8358,"org":8425,"tags":8426,"stars":26,"repoUrl":27,"updatedAt":8372},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8427,8428,8429,8430,8431],{"name":8362,"slug":8363,"type":13},{"name":8365,"slug":8366,"type":13},{"name":8292,"slug":8293,"type":13},{"name":9,"slug":8,"type":13},{"name":8370,"slug":8371,"type":13},{"slug":8374,"name":8374,"fn":8375,"description":8376,"org":8433,"tags":8434,"stars":26,"repoUrl":27,"updatedAt":8383},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8435,8436,8437,8438],{"name":9,"slug":8,"type":13},{"name":8296,"slug":8297,"type":13},{"name":15,"slug":16,"type":13},{"name":8325,"slug":1708,"type":13},{"slug":8440,"name":8440,"fn":8441,"description":8442,"org":8443,"tags":8444,"stars":26,"repoUrl":27,"updatedAt":8453},"expo-brownfield","integrate Expo and React Native into native apps","Framework (OSS). Integrate Expo and React Native into an existing native iOS or Android app. Use when the user mentions brownfield, embedding React Native in a native app, AAR\u002FXCFramework, or adding Expo to an existing Kotlin\u002FSwift project. Covers both the isolated approach and the integrated approach.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8445,8446,8447,8450,8451,8452],{"name":8289,"slug":8290,"type":13},{"name":9,"slug":8,"type":13},{"name":8448,"slug":8449,"type":13},"Integrations","integrations",{"name":8296,"slug":8297,"type":13},{"name":15,"slug":16,"type":13},{"name":8325,"slug":1708,"type":13},"2026-07-24T05:36:39.682299",{"slug":8455,"name":8455,"fn":8456,"description":8457,"org":8458,"tags":8459,"stars":26,"repoUrl":27,"updatedAt":8470},"expo-data-fetching","fetch and manage data in Expo apps","Framework (OSS). Use when implementing or debugging ANY network request, API call, or data fetching. Covers fetch API, React Query, SWR, error handling, caching, offline support, and Expo Router data loaders (`useLoaderData`).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8460,8463,8466,8467,8468],{"name":8461,"slug":8462,"type":13},"API Development","api-development",{"name":8464,"slug":8465,"type":13},"Caching","caching",{"name":9,"slug":8,"type":13},{"name":15,"slug":16,"type":13},{"name":8469,"slug":1531,"type":13},"React","2026-07-24T05:36:42.177188",{"slug":8472,"name":8472,"fn":8473,"description":8474,"org":8475,"tags":8476,"stars":26,"repoUrl":27,"updatedAt":8485},"expo-dev-client","build and distribute Expo development clients","Framework (OSS). Build and distribute Expo development clients locally or via TestFlight for internal testing. For production TestFlight releases and store submission, use the eas-app-stores skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8477,8478,8479,8480,8481,8484],{"name":8289,"slug":8290,"type":13},{"name":8292,"slug":8293,"type":13},{"name":9,"slug":8,"type":13},{"name":8296,"slug":8297,"type":13},{"name":8482,"slug":8483,"type":13},"Local Development","local-development",{"name":15,"slug":16,"type":13},"2026-07-24T05:36:51.160719",{"slug":8487,"name":8487,"fn":8488,"description":8489,"org":8490,"tags":8491,"stars":26,"repoUrl":27,"updatedAt":8496},"expo-dom","run web components in native apps","Framework (OSS). Use Expo DOM components to run web code in a webview on native and as-is on web. Migrate web code to native incrementally. For the end-to-end migration of a whole web app, use the expo-web-to-native skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8492,8493,8494,8495],{"name":9,"slug":8,"type":13},{"name":21,"slug":22,"type":13},{"name":15,"slug":16,"type":13},{"name":8325,"slug":1708,"type":13},"2026-07-24T05:36:41.176872",{"slug":8498,"name":8498,"fn":8499,"description":8500,"org":8501,"tags":8502,"stars":26,"repoUrl":27,"updatedAt":8507},"expo-examples","integrate Expo example projects","Framework (OSS). Expo's official example projects - the expo\u002Fexamples repo of ~70 `with-*` integrations (Stripe, Clerk, Supabase, OpenAI, maps, Reanimated, SQLite, Skia, NativeWind, and more). Use when integrating a third-party library or service into an existing Expo app and you want the canonical, version-matched pattern to adapt, or when scaffolding a new project from one with `npx create-expo --example`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8503,8504,8505,8506],{"name":9,"slug":8,"type":13},{"name":8448,"slug":8449,"type":13},{"name":15,"slug":16,"type":13},{"name":8325,"slug":1708,"type":13},"2026-07-24T05:36:35.174379"]