signal-desktop/ts/storybook/Fixtures.ts

34 lines
979 B
TypeScript
Raw Normal View History

2020-10-30 20:34:04 +00:00
// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2020-09-16 19:31:05 +00:00
/* 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';
2020-04-06 16:48:58 +00:00
// @ts-ignore
import portraitTeal from '../../fixtures/50x1000-teal.jpeg';
// @ts-ignore
import squareSticker from '../../fixtures/512x515-thumbs-up-lincoln.webp';
// 320x240
2020-04-06 16:48:58 +00:00
export const gifUrl = `/${gif}`;
// 800×1200
2020-04-06 16:48:58 +00:00
export const pngUrl = `/${png}`;
// 1000x50
export const landscapeGreenUrl = `/${landscapeGreen}`;
// 200x50
export const landscapePurpleUrl = `/${landscapePurple}`;
// 50x1000
export const portraitTealUrl = `/${portraitTeal}`;
export const squareStickerUrl = `/${squareSticker}`;