@butternutbox/pawprint-native 0.11.0 → 0.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@butternutbox/pawprint-native",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "type": "module",
5
5
  "description": "ButternutBox Pawprint Design System - React Native Components",
6
6
  "main": "./dist/index.cjs",
@@ -4,7 +4,7 @@ import * as AvatarPrimitive from "@rn-primitives/avatar"
4
4
  import styled from "@emotion/native"
5
5
  import { Typography } from "../Typography"
6
6
  import { Icon, type IconSize } from "../Icon"
7
- import { DogHeadOutlinedPrimary } from "@butternutbox/pawprint-icons/marketing"
7
+ import { DogHead } from "@butternutbox/pawprint-icons/core"
8
8
 
9
9
  export type AvatarSize = "sm" | "md" | "lg"
10
10
  export type AvatarFallbackType = "string" | "image"
@@ -188,7 +188,7 @@ const AvatarRoot = React.forwardRef<View, AvatarProps>(
188
188
  ) : (
189
189
  <StyledIcon
190
190
  avatarSize={size}
191
- icon={DogHeadOutlinedPrimary}
191
+ icon={DogHead}
192
192
  size={AVATAR_SIZE_TO_ICON_SIZE[size]}
193
193
  colour="primary"
194
194
  aria-label="Profile image"