diff --git a/front/packages/primitives/src/image.tsx b/front/packages/primitives/src/image.tsx index 6c7816c0..e1c2f9c0 100644 --- a/front/packages/primitives/src/image.tsx +++ b/front/packages/primitives/src/image.tsx @@ -19,89 +19,99 @@ */ import { useState } from "react"; -import { View, Image as Img, ImageSourcePropType, ImageStyle } from "react-native"; -import { percent, useYoshiki } from "yoshiki/native"; +import { + View, + Image as Img, + ImageSourcePropType, + ImageStyle, + Platform, + ImageProps, +} from "react-native"; +import { useYoshiki } from "yoshiki/native"; +import { YoshikiStyle } from "yoshiki/dist/type"; +import { Skeleton } from "./skeleton"; -type ImageOptions = { - radius?: number; - fallback?: string | ImageSourcePropType; -}; +type YoshikiEnhanced