Signal-Desktop/ts/storybook/Fixtures.ts

34 lines
979 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
/* eslint-disable @typescript-eslint/ban-ts-comment */
// @ts-ignore
import gif from '../../fixtures/giphy-GVNvOUpeYmI7e.gif';
// @ts-ignore
import png from '../../fixtures/freepngs-2cd43b_bed7d1327e88454487397574d87b64dc_mv2.png';
// @ts-ignore
import landscapeGreen from '../../fixtures/1000x50-green.jpeg';
// @ts-ignore
import landscapePurple from '../../fixtures/200x50-purple.png';
// @ts-ignore
import portraitTeal from '../../fixtures/50x1000-teal.jpeg';
// @ts-ignore
import squareSticker from '../../fixtures/512x515-thumbs-up-lincoln.webp';
// 320x240
export const gifUrl = `/${gif}`;
// 800×1200
export const pngUrl = `/${png}`;
// 1000x50
export const landscapeGreenUrl = `/${landscapeGreen}`;
// 200x50
export const landscapePurpleUrl = `/${landscapePurple}`;
// 50x1000
export const portraitTealUrl = `/${portraitTeal}`;
export const squareStickerUrl = `/${squareSticker}`;