diff --git a/front/packages/primitives/src/image/blurhash.tsx b/front/packages/primitives/src/image/blurhash.tsx deleted file mode 100644 index 8d2835bc..00000000 --- a/front/packages/primitives/src/image/blurhash.tsx +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Kyoo - A portable and vast media library solution. - * Copyright (c) Kyoo. - * - * See AUTHORS.md and LICENSE file in the project root for full license information. - * - * Kyoo is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * any later version. - * - * Kyoo is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with Kyoo. If not, see . - */ - -import type { ReactElement } from "react"; -import { View } from "react-native"; -import { Blurhash } from "react-native-blurhash"; -import { type Stylable, useYoshiki } from "yoshiki/native"; - -export const BlurhashContainer = ({ - blurhash, - children, - ...props -}: { blurhash: string; children?: ReactElement | ReactElement[] } & Stylable) => { - const { css } = useYoshiki(); - - return ( - - - {children} - - ); -}; diff --git a/front/packages/primitives/src/image/index.tsx b/front/packages/primitives/src/image/index.tsx index dca762e4..839f71ab 100644 --- a/front/packages/primitives/src/image/index.tsx +++ b/front/packages/primitives/src/image/index.tsx @@ -29,7 +29,6 @@ import type { ImageLayout, Props, YoshikiEnhanced } from "./base-image"; import { Image } from "./image"; export { Sprite } from "./sprite"; -export { BlurhashContainer } from "./blurhash"; export { type Props as ImageProps, Image }; export const Poster = ({