UNPKG

368 BJavaScriptView Raw
1import React from "react";
2import wordicon from "./word.png";
3import pdficon from "./adobe-pdf-icon.svg";
4
5export function IconWord(props) {
6 return (
7 <img src={wordicon} width="25" style={{ cursor: "pointer" }} {...props} />
8 );
9}
10
11export function IconPdf(props) {
12 return (
13 <img src={pdficon} width="23" style={{ cursor: "pointer" }} {...props} />
14 );
15}