// Copyright 2025 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import * as React from 'react'; import type { Meta } from '@storybook/react'; import type { Props } from './ImageOrBlurhash'; import { ImageOrBlurhash } from './ImageOrBlurhash'; export default { title: 'Components/ImageOrBlurhash', } satisfies Meta; export function JustImage(): JSX.Element { return ( ); } export function JustBlurHash(): JSX.Element { return ( ); } export function WideBlurHash(): JSX.Element { return ( ); } export function TallBlurHash(): JSX.Element { return ( ); } export function FullImage(): JSX.Element { return ( ); }