phantasmal-world/src/ui/SectionIdIcon.tsx

25 lines
573 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
}: {
2019-07-02 23:00:24 +08:00
section_id: SectionId,
size?: number,
title?: string
}) {
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
}}
/>
);
}