svg
Functions
g
function g(string memory _props, string memory _children) internal pure returns (string memory);
path
function path(
string memory _props,
string memory _children
) internal pure returns (string memory);
text
function text(
string memory _props,
string memory _children
) internal pure returns (string memory);
line
function line(
string memory _props,
string memory _children
) internal pure returns (string memory);
circle
function circle(
string memory _props,
string memory _children
) internal pure returns (string memory);
circle
function circle(string memory _props) internal pure returns (string memory);
ellipse
function ellipse(
string memory _props,
string memory _children
) internal pure returns (string memory);
ellipse
function ellipse(string memory _props) internal pure returns (string memory);
rect
function rect(
string memory _props,
string memory _children
) internal pure returns (string memory);
rect
function rect(string memory _props) internal pure returns (string memory);
filter
function filter(
string memory _props,
string memory _children
) internal pure returns (string memory);
cdata
function cdata(string memory _content) internal pure returns (string memory);
radialGradient
function radialGradient(
string memory _props,
string memory _children
) internal pure returns (string memory);
linearGradient
function linearGradient(
string memory _props,
string memory _children
) internal pure returns (string memory);
gradientStop
function gradientStop(
uint256 offset,
string memory stopColor,
string memory _props
) internal pure returns (string memory);
animateTransform
function animateTransform(string memory _props) internal pure returns (string memory);
image
function image(string memory _href, string memory _props) internal pure returns (string memory);
el
function el(
string memory _tag,
string memory _props,
string memory _children
) internal pure returns (string memory);
el
function el(string memory _tag, string memory _props) internal pure returns (string memory);
prop
function prop(string memory _key, string memory _val) internal pure returns (string memory);