diff options
Diffstat (limited to 'docs/src/components/codes/LinkIcon.jsx')
-rw-r--r-- | docs/src/components/codes/LinkIcon.jsx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/src/components/codes/LinkIcon.jsx b/docs/src/components/codes/LinkIcon.jsx new file mode 100644 index 0000000..5bfeebd --- /dev/null +++ b/docs/src/components/codes/LinkIcon.jsx @@ -0,0 +1,14 @@ +/* + * Copyright (c) 2020 The ZMK Contributors + * + * SPDX-License-Identifier: CC-BY-NC-SA-4.0 + */ + +import React from "react"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { faExternalLinkAlt } from "@fortawesome/free-solid-svg-icons"; +export default function LinkIcon() { + return <FontAwesomeIcon className="icon" icon={faExternalLinkAlt} />; +} + +LinkIcon.propTypes = {}; |