// Copyright 2019-2020 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import * as React from 'react'; import * as styles from './MessageSticker.scss'; import type { Props as MessageMetaProps } from './MessageMeta'; import { MessageMeta } from './MessageMeta'; export type Props = MessageMetaProps & { image: string; }; export const MessageSticker: React.ComponentType = ({ image, kind, minutesAgo, }) => { return (
Sticker
); };