mirror of
https://github.com/027xiguapi/code-box.git
synced 2026-05-12 05:07:40 +00:00
26 lines
626 B
TypeScript
26 lines
626 B
TypeScript
import { DownloadOutlined, StarTwoTone } from "@ant-design/icons"
|
|
|
|
import { sendToContentScript } from "@plasmohq/messaging"
|
|
|
|
import { i18n } from "~tools"
|
|
|
|
export default function DownloadPdf(props) {
|
|
let { name } = props
|
|
|
|
async function downloadPdf() {
|
|
sendToContentScript({
|
|
name: `${name}-downloadPdf`
|
|
})
|
|
}
|
|
|
|
return (
|
|
<div className="item download" onClick={downloadPdf}>
|
|
<span>
|
|
<StarTwoTone twoToneColor="#eb2f96" style={{ marginRight: "5px" }} />
|
|
{i18n("downloadPdf")}
|
|
</span>
|
|
<DownloadOutlined style={{ color: "#52c41a", fontSize: "16px" }} />
|
|
</div>
|
|
)
|
|
}
|