Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const Div = props => createElement("div", props);
// eslint-disable-next-line react/no-multi-comp
render() {
return createElement('tspan', prepare(this.props));
}
}
render() {
return createElement('defs', prepare(this.props));
}
}
export const Ellipse = (props: EllipseProps) => {
return createElement('ellipse', prepare(props));
};
export const Polygon = (props: PolygonProps) => {
return createElement('polygon', prepare(props));
};
render() {
return createElement('rect', prepare(this.props));
}
}
export const Rect = (props: RectProps) => {
return createElement('rect', prepare(props));
};
render() {
return createElement('image', prepare(this.props));
}
}
export const Stop = (props: StopProps) => {
return createElement('stop', prepare(props));
};
export const ClipPath = (props: ClipPathProps) => {
return createElement('clipPath', prepare(props));
};