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