UNPKG

@utrecht/web-component-library-stencil

Version:

Stencil component library bundle for the Municipality of Utrecht based on the NL Design System architecture

45 lines (44 loc) 1.99 kB
import { h } from "@stencil/core"; export class UtrechtIconChevronRight { constructor() { this.direction = 'inherit'; } render() { return (h("svg", { key: '6a5e0d04cb7862ae4c2066582f3c7156c2a8fb38', viewBox: "0 0 8 14", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", height: "1em", width: "1em" }, h("defs", { key: '499eb5213e01a669e7e688e2d116f2c25e772694' }, h("clipPath", { key: 'b21a7684ac0252035f640b574e2a9608f553ce6f', id: "a" }, h("path", { key: 'f64aaf3185bd18568bbb96143306c1c661022e93', "stroke-width": "0", d: "M0 0h8v14H0z" }))), h("g", { key: '4c076ff3ca1ca0916096e6db0c3a4d3325000eec', "clip-path": "url(#a)" }, h("path", { key: 'ae94868b8c9e0185096b4fa11c3bd0129e427eac', d: "M1 14c-.26 0-.51-.1-.71-.29a.996.996 0 0 1 0-1.41l5.29-5.29-5.29-5.3C-.1 1.32-.1.68.29.29s1.03-.39 1.42 0l6 6c.39.39.39 1.02 0 1.41l-6 6.01c-.2.2-.45.29-.71.29" })))); } static get is() { return "utrecht-icon-chevron-right"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["../../icon/generated-direction-inherit.scss"] }; } static get styleUrls() { return { "$": ["../../icon/generated-direction-inherit.css"] }; } static get properties() { return { "direction": { "type": "string", "mutable": false, "complexType": { "original": "string", "resolved": "string", "references": {} }, "required": false, "optional": false, "docs": { "tags": [], "text": "" }, "attribute": "direction", "reflect": true, "defaultValue": "'inherit'" } }; } } //# sourceMappingURL=utrecht-icon-chevron-right.stencil.js.map