diff --git a/lib/render-content/plugins/code-header.js b/lib/render-content/plugins/code-header.js index 419cebde6f..ad13c65948 100644 --- a/lib/render-content/plugins/code-header.js +++ b/lib/render-content/plugins/code-header.js @@ -93,7 +93,7 @@ export default function addCodeHeader(node) { // Display the language using the above map of `{ [shortCode]: language }` const language = LANGUAGE_MAP[node.lang] || node.lang || 'Code' - const btnIconHtml = octicons.paste.toSVG() + const btnIconHtml = octicons.copy.toSVG() const btnIconAst = parse5.parse(String(btnIconHtml), { sourceCodeLocationInfo: true }) const btnIcon = fromParse5(btnIconAst, { file: btnIconHtml })