Skip to content

Instantly share code, notes, and snippets.

View scyclow's full-sized avatar
💭
$$$

Steve Pikelny scyclow

💭
$$$
View GitHub Profile
@tangert
tangert / SVG.sol
Last active April 22, 2024 23:32
SVG Solidity Library
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "./Utils.sol";
// Core SVG utilitiy library which helps us construct
// onchain SVG's with a simple, web-like API.
library svg {
/* MAIN ELEMENTS */
function g(string memory _props, string memory _children)
internal