Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 | 26x | import eyeBlueIcon from "../assets/svg/eye_blue.js"
import downloadBlueIcon from "../assets/svg/download_blue.js"
export default (billUrl) => {
return (
`<div class="icon-actions">
<div id="eye" data-testid="icon-eye" data-bill-url=${billUrl}>
${eyeBlueIcon}
</div>
</div>`
)
} |