orchidmap-front/src/components/StickerIcon.jsx
2018-12-07 14:00:07 +07:00

19 lines
391 B
JavaScript

import React from 'react';
import { STICKERS } from '$constants/stickers';
type Props = {
set: String,
sticker: String,
};
export const StickerIcon = ({ set, sticker }: Props) => (
<div
className="cursor-icon-sticker"
style={{
backgroundImage: `url(${STICKERS[set].url}`,
backgroundPosition: `-${STICKERS[set].layers[sticker].off * 100}% 50%`,
}}
/>
);
//