ar-design
Version:
AR Design is a (react | nextjs) ui library.
6 lines (5 loc) • 320 B
JavaScript
import React from "react";
const Svg = ({ children, viewBox, fill = "none", width = 32, height = 32, style, }) => {
return (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: viewBox ?? "0 0 24 24", fill: fill, width: width, height: height, style: style }, children));
};
export default Svg;