{"version":3,"file":"dialpad-sparkle.cjs","names":[],"sources":["../../../../src/icons/dialpad-sparkle.vue"],"sourcesContent":["<template>\n  <svg :aria-label=\"ariaLabel\" :class=\"iconSizeClass\" :data-qa=\"dataQA\" :aria-hidden=\"ariaHidden\" role=\"img\" data-name=\"Dialpad Sparkle\" class=\"d-icon d-icon--dialpad-sparkle\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18.527 2c.1 0 .186.067.215.163a4.786 4.786 0 0 0 3.09 3.144.24.24 0 0 1 .168.227.24.24 0 0 1-.168.228 4.786 4.786 0 0 0-3.058 3.045.263.263 0 0 1-.247.183.263.263 0 0 1-.247-.183 4.785 4.785 0 0 0-3.018-3.034.254.254 0 0 1-.175-.24c0-.109.072-.204.175-.238a4.785 4.785 0 0 0 3.05-3.132.227.227 0 0 1 .215-.163Z\" :fill=\"`url(#${uniqueID}a)`\"/><path d=\"M9.005 4.784a.46.46 0 0 1 .436.331c.936 3.039 3.298 5.441 6.295 6.406a.485.485 0 0 1 .339.46c0 .21-.14.395-.34.46-2.93.943-5.253 3.26-6.23 6.204a.533.533 0 0 1-.5.372.533.533 0 0 1-.5-.372c-.967-2.917-3.257-5.22-6.15-6.18A.515.515 0 0 1 2 11.98c0-.222.146-.416.355-.486 2.959-.981 5.287-3.367 6.214-6.379a.46.46 0 0 1 .436-.33Z\" :fill=\"`url(#${uniqueID}b)`\"/><path d=\"M18.528 15.01c.099 0 .185.067.215.163a4.786 4.786 0 0 0 3.09 3.144.24.24 0 0 1 .167.227.24.24 0 0 1-.167.227 4.785 4.785 0 0 0-3.059 3.046.263.263 0 0 1-.247.183.263.263 0 0 1-.246-.183 4.786 4.786 0 0 0-3.019-3.034.254.254 0 0 1-.175-.24c0-.109.072-.205.175-.239a4.785 4.785 0 0 0 3.05-3.131.227.227 0 0 1 .216-.163Z\" :fill=\"`url(#${uniqueID}c)`\"/><defs><linearGradient :id=\"`${uniqueID}a`\" x1=\"2\" y1=\"2\" x2=\"22\" y2=\"22\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#471571\"/><stop offset=\".031\" stop-color=\"#551B84\"/><stop offset=\".145\" stop-color=\"#7C229E\"/><stop offset=\".237\" stop-color=\"#9024A4\"/><stop offset=\".355\" stop-color=\"#B02290\"/><stop offset=\".483\" stop-color=\"#D32B86\"/><stop offset=\".603\" stop-color=\"#E92F6F\"/><stop offset=\".701\" stop-color=\"#F6484F\"/><stop offset=\".9\" stop-color=\"#FB7328\"/><stop offset=\".973\" stop-color=\"#F3960F\"/><stop offset=\"1\" stop-color=\"#F3960F\"/></linearGradient><linearGradient :id=\"`${uniqueID}b`\" x1=\"2\" y1=\"2\" x2=\"22\" y2=\"22\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#471571\"/><stop offset=\".031\" stop-color=\"#551B84\"/><stop offset=\".145\" stop-color=\"#7C229E\"/><stop offset=\".237\" stop-color=\"#9024A4\"/><stop offset=\".355\" stop-color=\"#B02290\"/><stop offset=\".483\" stop-color=\"#D32B86\"/><stop offset=\".603\" stop-color=\"#E92F6F\"/><stop offset=\".701\" stop-color=\"#F6484F\"/><stop offset=\".9\" stop-color=\"#FB7328\"/><stop offset=\".973\" stop-color=\"#F3960F\"/><stop offset=\"1\" stop-color=\"#F3960F\"/></linearGradient><linearGradient :id=\"`${uniqueID}c`\" x1=\"2\" y1=\"2\" x2=\"22\" y2=\"22\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#471571\"/><stop offset=\".031\" stop-color=\"#551B84\"/><stop offset=\".145\" stop-color=\"#7C229E\"/><stop offset=\".237\" stop-color=\"#9024A4\"/><stop offset=\".355\" stop-color=\"#B02290\"/><stop offset=\".483\" stop-color=\"#D32B86\"/><stop offset=\".603\" stop-color=\"#E92F6F\"/><stop offset=\".701\" stop-color=\"#F6484F\"/><stop offset=\".9\" stop-color=\"#FB7328\"/><stop offset=\".973\" stop-color=\"#F3960F\"/><stop offset=\"1\" stop-color=\"#F3960F\"/></linearGradient></defs></svg>\n</template>\n\n<script>\nimport { getUniqueString } from '@/src/utils';\nimport { ICON_SIZE_MODIFIERS } from '@/src/constants';\n\nexport default {\n  name: 'DtIconDialpadSparkle',\n\n  props: {\n    /**\n     * The size of the icon.\n     * @values 100, 200, 300, 400, 500, 600, 700, 800\n     */\n    size: {\n      type: String,\n      default: '500',\n      validator: (s) => Object.keys(ICON_SIZE_MODIFIERS).includes(s),\n    },\n\n    /**\n     * The label of the icon as read out by a screenreader. Leave this unset if your icon is purely presentational\n     */\n    ariaLabel: {\n      type: String,\n      default: undefined,\n    },\n  },\n\n  /**\n  * @TODO: Remove this emit once the icons migration is complete,\n  * they will no longer need this event.\n  * */\n  emits: ['loaded'],\n\n  computed: {\n    iconSizeClass () {\n      return ICON_SIZE_MODIFIERS[this.size];\n    },\n\n    ariaHidden () {\n      return !this.ariaLabel ? 'true' : 'false';\n    },\n\n    dataQA () {\n      return this.$attrs['data-qa'] ?? 'dt-icon';\n    },\n  },\n\n  created () {\n    this.$emit('loaded');\n    this.uniqueID = getUniqueString();\n  },\n};\n</script>\n"],"mappings":"qKAQA,IAAK,EAAU,CACb,KAAM,uBAEN,MAAO,CAKL,KAAM,CACJ,KAAM,OACN,QAAS,MACT,UAAY,GAAM,OAAO,KAAK,EAAA,EAAoB,CAAC,SAAS,EAAE,CAC/D,CAKD,UAAW,CACT,KAAM,OACN,QAAS,IAAA,GACV,CACF,CAMD,MAAO,CAAC,SAAS,CAEjB,SAAU,CACR,eAAiB,CACf,OAAO,EAAA,EAAoB,KAAK,OAGlC,YAAc,CACZ,OAAQ,KAAK,UAAqB,QAAT,QAG3B,QAAU,CACR,OAAO,KAAK,OAAO,YAAc,WAEpC,CAED,SAAW,CACT,KAAK,MAAM,SAAS,CACpB,KAAK,SAAW,EAAA,GAAiB,EAEpC,+KAtDy7F,MAAA,CAAl7F,aAAY,EAAA,UAAY,OAAA,EAAA,EAAA,gBAAK,CAAE,EAAA,cAAwG,iCAAgC,CAAA,CAAxH,UAAS,EAAA,OAAS,cAAa,EAAA,WAAY,KAAK,MAAM,YAAU,kBAAyD,QAAQ,YAAY,MAAM,wDAA6X,OAAA,CAA1V,EAAE,0TAA2T,KAAI,QAAU,EAAA,SAAQ,wCAAuX,OAAA,CAA1W,EAAE,0UAA2U,KAAI,QAAU,EAAA,SAAQ,wCAA6W,OAAA,CAAhW,EAAE,gUAAiU,KAAI,QAAU,EAAA,SAAQ,wCAA8pD,OAAA,KAAA,0BAAnmC,iBAAA,CAA7hB,GAAE,GAAK,EAAA,SAAQ,GAAK,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,KAAK,cAAc,gmBAA2gC,iBAAA,CAA7hB,GAAE,GAAK,EAAA,SAAQ,GAAK,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,KAAK,cAAc,gmBAA2gC,iBAAA,CAA7hB,GAAE,GAAK,EAAA,SAAQ,GAAK,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,KAAK,cAAc"}