@gf-ui/components
Version:
24 lines (20 loc) • 1.15 kB
JavaScript
import { r as registerInstance, h, H as Host } from './index-e22013e4.js';
import { I as Icons } from './index-22c022f8.js';
const svgData = {"name":"svg","type":"element","value":"","attributes":{"class":"icon","viewBox":"0 0 1024 1024","version":"1.1","xmlns":"http://www.w3.org/2000/svg"},"children":[{"name":"path","type":"element","value":"","attributes":{"fill":"currentColor","d":"M593.450667 512.128L360.064 278.613333l45.290667-45.226666 278.613333 278.762666L405.333333 790.613333l-45.226666-45.269333z"},"children":[]}],"_name":"arrow-right","_isColor":false};
const GfIconarrowRight = class {
constructor(hostRef) {
registerInstance(this, hostRef);
this.size = 30;
this.styles = {};
this.color = "#606266";
this.rotate = 0;
this.spin = false;
this.opacity = 1;
}
render() {
const { size, styles, color, rotate, spin, opacity } = this;
const hostStyles = { width: size + 'px', height: size + 'px' };
return (h(Host, { style: hostStyles }, h(Icons, Object.assign({}, { svgData, size, styles, color, rotate, spin, opacity }))));
}
};
export { GfIconarrowRight as gf_icon_arrow_right };