Skip to content

Instantly share code, notes, and snippets.

@judell
Created January 13, 2026 06:56
Show Gist options
  • Select an option

  • Save judell/34a77d217bfa623455d625210c02368d to your computer and use it in GitHub Desktop.

Select an option

Save judell/34a77d217bfa623455d625210c02368d to your computer and use it in GitHub Desktop.
newstack-refactor-before
<!-- before -->
<HStack>
<VStack>
<Text variant="secondary" fontSize="$fontSize-sm">Cloud Cover</Text>
<Text fontWeight="semibold" fontSize="$fontSize-lg">
{condition.cloudcover}%
</Text>
</VStack>
<VStack>
<Text variant="secondary" fontSize="$fontSize-sm">Humidity</Text>
<Text fontWeight="semibold" fontSize="$fontSize-lg">
{condition.humidity}%
</Text>
</VStack>
<VStack>
<Text variant="secondary" fontSize="$fontSize-sm">Wind Speed</Text>
<Text fontWeight="semibold" fontSize="$fontSize-lg">
{condition.windspeedMiles} mph
</Text>
</VStack>
</HStack>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment