phantasmal-world/src/ui/SectionIdIcon.tsx

26 lines
590 B
TypeScript
Raw Normal View History

import React from "react";
import { SectionId } from "../domain";
export function SectionIdIcon({
2019-07-02 23:00:24 +08:00
section_id,
size = 28,
title,
}: {
section_id: SectionId;
size?: number;
title?: string;
2019-07-03 02:56:33 +08:00
}): JSX.Element {
return (
<div
title={title}
style={{
display: "inline-block",
width: size,
height: size,
2019-07-02 23:00:24 +08:00
backgroundImage: `url(${process.env.PUBLIC_URL}/images/sectionids/${SectionId[section_id]}.png)`,
backgroundSize: size,
}}
/>
);
}