diff --git a/eslint.config.mjs b/eslint.config.mjs index 17589977..5aad6cfb 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -2,4 +2,11 @@ import eslintKongUiConfig from '@kong/eslint-config-kong-ui' export default [ ...eslintKongUiConfig, + // Allow v-html in the ComponentTemplate + { + files: ['src/__template__/ComponentTemplate.vue'], + rules: { + 'vue/no-v-html': 'off', + }, + }, ] diff --git a/package.json b/package.json index a73b37cf..5699ebfa 100644 --- a/package.json +++ b/package.json @@ -59,7 +59,6 @@ "@semantic-release/git": "^10.0.1", "@types/jsdom": "^21.1.7", "@types/node": "^20.15.0", - "@types/node-emoji": "^2.1.0", "@vitejs/plugin-vue": "^5.1.2", "@vitest/ui": "^2.0.5", "@vue/test-utils": "^2.4.6", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3d377880..5f3519e5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -44,9 +44,6 @@ importers: '@types/node': specifier: ^20.15.0 version: 20.16.1 - '@types/node-emoji': - specifier: ^2.1.0 - version: 2.1.0 '@vitejs/plugin-vue': specifier: ^5.1.2 version: 5.1.2(vite@5.4.0(@types/node@20.16.1)(sass@1.77.8))(vue@3.4.37(typescript@5.5.4)) @@ -584,7 +581,6 @@ packages: '@evilmartians/lefthook@1.7.12': resolution: {integrity: sha512-YW8tSpL3/KdQbNgXVNdm7DH8Sc8btp5NCX2J9MGIbJCGSEZENDI9mUC61jaClALNlx/dzEGGzdoM9WGSLa18Og==} - cpu: [x64, arm64, ia32] os: [darwin, linux, win32] hasBin: true @@ -940,10 +936,6 @@ packages: '@types/lodash@4.17.7': resolution: {integrity: sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==} - '@types/node-emoji@2.1.0': - resolution: {integrity: sha512-LBGWP2LL5A+PpcvzrgXCFcHt9N1l5bqQn05ZUQFFM625k/tmc2w9ghT4kUwQN6gIPlX6qnDOfekmJmV9BywV9g==} - deprecated: This is a stub types definition. node-emoji provides its own type definitions, so you do not need this installed. - '@types/node@20.16.1': resolution: {integrity: sha512-zJDo7wEadFtSyNz5QITDfRcrhqDvQI1xQNQ0VoizPjM/dVAODqqIUWbJPkvsxmTI0MYRGRikcdjMPhOssnPejQ==} @@ -4790,10 +4782,6 @@ snapshots: '@types/lodash@4.17.7': {} - '@types/node-emoji@2.1.0': - dependencies: - node-emoji: 2.1.3 - '@types/node@20.16.1': dependencies: undici-types: 6.19.8 diff --git a/scripts/utilities/__snapshots__/generate-icon-components.spec.ts.snap b/scripts/utilities/__snapshots__/generate-icon-components.spec.ts.snap index b0af6266..df677c31 100644 --- a/scripts/utilities/__snapshots__/generate-icon-components.spec.ts.snap +++ b/scripts/utilities/__snapshots__/generate-icon-components.spec.ts.snap @@ -730,6 +730,7 @@ exports[`generate > does not remove icons from the previous build 1`] = ` "InsomniaIcon.vue", "ItalicIcon.vue", "KeyboardReturnIcon.vue", + "KongGradientIcon.vue", "KongIcon.vue", "LanguageBashIcon.vue", "LanguageCIcon.vue", diff --git a/src/__template__/ComponentTemplate.vue b/src/__template__/ComponentTemplate.vue index 668ce8f2..82bcf6a2 100644 --- a/src/__template__/ComponentTemplate.vue +++ b/src/__template__/ComponentTemplate.vue @@ -56,6 +56,15 @@ const props = defineProps({ required: false, default: 'span', }, + /** + * A boolean to disable prefixing any internal SVG ids with a unique string which is done to resolve the potential for multiple SVG instances on the same page and the SVG utilizing the same ids and references internally (e.g. in the `` tag). + * Typically only set to `true` during snapshot testing. + * Defaults to `false`. + */ + staticIds: { + type: Boolean, + default: false, + }, }) const iconSize = computed((): string => { @@ -90,6 +99,53 @@ const rootElementStyles = computed((): Record => ({ lineHeight: '0', width: iconSize.value, })) + +/** + * Prefix all SVG IDs in the given SVG string with a random prefix to ensure uniqueness. + * + * This function performs the following steps: + * 1. Generates a random prefix. + * 2. Replaces all `id` attributes in the SVG string with the new prefixed IDs. + * 3. Updates all ID references (e.g., `url(#id)`, `href="#id"`, etc.) to use the new prefixed IDs. + * + * @param {string} svgString - The SVG string in which to prefix IDs. + * @returns {string} - The SVG string with prefixed IDs. + */ +const prefixSvgIdsInString = (svgString: string): string => { + const idMap: Record = {} + const randomPrefix = Math.random().toString(36).substring(2, 12) + + // Replace IDs in the SVG string + const updatedSvgString = svgString.replace(/id="([^"]+)"/g, (match, originalId) => { + const newId = `${randomPrefix}-${originalId}` + idMap[originalId] = newId + return `id="${newId}"` + }) + + // Replace ID references (e.g., url(#id), href="#id", etc.) + const processedSvgString = updatedSvgString.replace(/#([^\s^")]+)/g, (match, originalId) => idMap[originalId] ? `#${idMap[originalId]}` : match) + + // Return the processed SVG string + return processedSvgString +} + +const escapeHtml = (str: string) => { + const htmlEntities: { [key: string]: string } = { + '<': '<', + '>': '>', + '"': '"', + "'": ''', + '`': ''', + } + + return str.replace(/[<>"'`]/g, (match) => htmlEntities[match]) +} + +// The `svgOriginalContent` template string will be replaced with the SVG innerHTML in the generate script. +// eslint-disable-next-line @stylistic/quotes +const svgOriginalContent = `{%%ICON_SVG_INNER_HTML%%}` +const svgTitleContent = props.title ? `${escapeHtml(props.title)}` : '' +const svgProcessedContent = `${svgTitleContent}${!props.staticIds ? prefixSvgIdsInString(svgOriginalContent) : svgOriginalContent}` - diff --git a/src/tests/__snapshots__/AddChartIcon.html b/src/tests/__snapshots__/AddChartIcon.html index c24aef9c..825432e1 100644 --- a/src/tests/__snapshots__/AddChartIcon.html +++ b/src/tests/__snapshots__/AddChartIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/AddCircleIcon.html b/src/tests/__snapshots__/AddCircleIcon.html index 9e3d13bc..a14c4954 100644 --- a/src/tests/__snapshots__/AddCircleIcon.html +++ b/src/tests/__snapshots__/AddCircleIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/AddIcon.html b/src/tests/__snapshots__/AddIcon.html index aeb22a3b..d5ed36fc 100644 --- a/src/tests/__snapshots__/AddIcon.html +++ b/src/tests/__snapshots__/AddIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/AnalyticsIcon.html b/src/tests/__snapshots__/AnalyticsIcon.html index a4041c26..d35f836c 100644 --- a/src/tests/__snapshots__/AnalyticsIcon.html +++ b/src/tests/__snapshots__/AnalyticsIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/AppleIcon.html b/src/tests/__snapshots__/AppleIcon.html index cdc10692..49510bdb 100644 --- a/src/tests/__snapshots__/AppleIcon.html +++ b/src/tests/__snapshots__/AppleIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ArrowDownIcon.html b/src/tests/__snapshots__/ArrowDownIcon.html index f7fc0161..dfcc86b5 100644 --- a/src/tests/__snapshots__/ArrowDownIcon.html +++ b/src/tests/__snapshots__/ArrowDownIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ArrowLeftIcon.html b/src/tests/__snapshots__/ArrowLeftIcon.html index 601a046e..4c125e42 100644 --- a/src/tests/__snapshots__/ArrowLeftIcon.html +++ b/src/tests/__snapshots__/ArrowLeftIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ArrowRightIcon.html b/src/tests/__snapshots__/ArrowRightIcon.html index 7026116c..129abaa7 100644 --- a/src/tests/__snapshots__/ArrowRightIcon.html +++ b/src/tests/__snapshots__/ArrowRightIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ArrowUpIcon.html b/src/tests/__snapshots__/ArrowUpIcon.html index d1108ccb..e8f60938 100644 --- a/src/tests/__snapshots__/ArrowUpIcon.html +++ b/src/tests/__snapshots__/ArrowUpIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/AwsIcon.html b/src/tests/__snapshots__/AwsIcon.html index 557bd327..b3757b6f 100644 --- a/src/tests/__snapshots__/AwsIcon.html +++ b/src/tests/__snapshots__/AwsIcon.html @@ -1 +1,3 @@ -My custom title \ No newline at end of file +My custom title + + \ No newline at end of file diff --git a/src/tests/__snapshots__/AzureIcon.html b/src/tests/__snapshots__/AzureIcon.html index 4ddfe0cd..29e4a6a4 100644 --- a/src/tests/__snapshots__/AzureIcon.html +++ b/src/tests/__snapshots__/AzureIcon.html @@ -1 +1,21 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/BackIcon.html b/src/tests/__snapshots__/BackIcon.html index 49342e9e..cd87981a 100644 --- a/src/tests/__snapshots__/BackIcon.html +++ b/src/tests/__snapshots__/BackIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/BarChartHorizontalIcon.html b/src/tests/__snapshots__/BarChartHorizontalIcon.html index 4b26dafe..7b2f0ffb 100644 --- a/src/tests/__snapshots__/BarChartHorizontalIcon.html +++ b/src/tests/__snapshots__/BarChartHorizontalIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/BarChartIcon.html b/src/tests/__snapshots__/BarChartIcon.html index 487f8b67..36ae2b2a 100644 --- a/src/tests/__snapshots__/BarChartIcon.html +++ b/src/tests/__snapshots__/BarChartIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/BlockquoteIcon.html b/src/tests/__snapshots__/BlockquoteIcon.html index fe359a30..e6501c57 100644 --- a/src/tests/__snapshots__/BlockquoteIcon.html +++ b/src/tests/__snapshots__/BlockquoteIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/BoldIcon.html b/src/tests/__snapshots__/BoldIcon.html index 75b0d95e..95800768 100644 --- a/src/tests/__snapshots__/BoldIcon.html +++ b/src/tests/__snapshots__/BoldIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/BookIcon.html b/src/tests/__snapshots__/BookIcon.html index 45a1da5c..bbce8b60 100644 --- a/src/tests/__snapshots__/BookIcon.html +++ b/src/tests/__snapshots__/BookIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/BotIcon.html b/src/tests/__snapshots__/BotIcon.html index a8302d88..c5acfe69 100644 --- a/src/tests/__snapshots__/BotIcon.html +++ b/src/tests/__snapshots__/BotIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/BrainIcon.html b/src/tests/__snapshots__/BrainIcon.html index 111229ad..9918cb81 100644 --- a/src/tests/__snapshots__/BrainIcon.html +++ b/src/tests/__snapshots__/BrainIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/CalIcon.html b/src/tests/__snapshots__/CalIcon.html index 6979dd94..d6983631 100644 --- a/src/tests/__snapshots__/CalIcon.html +++ b/src/tests/__snapshots__/CalIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ChartAreaIcon.html b/src/tests/__snapshots__/ChartAreaIcon.html index b51e36e7..cd52763b 100644 --- a/src/tests/__snapshots__/ChartAreaIcon.html +++ b/src/tests/__snapshots__/ChartAreaIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ChartDataIcon.html b/src/tests/__snapshots__/ChartDataIcon.html index 4fe961c7..0a925f26 100644 --- a/src/tests/__snapshots__/ChartDataIcon.html +++ b/src/tests/__snapshots__/ChartDataIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ChartLinesIcon.html b/src/tests/__snapshots__/ChartLinesIcon.html index fa525185..a6c2e434 100644 --- a/src/tests/__snapshots__/ChartLinesIcon.html +++ b/src/tests/__snapshots__/ChartLinesIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/CheckCircleIcon.html b/src/tests/__snapshots__/CheckCircleIcon.html index 539d6769..2f7992b4 100644 --- a/src/tests/__snapshots__/CheckCircleIcon.html +++ b/src/tests/__snapshots__/CheckCircleIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/CheckIcon.html b/src/tests/__snapshots__/CheckIcon.html index e5640c53..da648430 100644 --- a/src/tests/__snapshots__/CheckIcon.html +++ b/src/tests/__snapshots__/CheckIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/CheckSmallIcon.html b/src/tests/__snapshots__/CheckSmallIcon.html index 7ee482c0..9933c737 100644 --- a/src/tests/__snapshots__/CheckSmallIcon.html +++ b/src/tests/__snapshots__/CheckSmallIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ChevronDownIcon.html b/src/tests/__snapshots__/ChevronDownIcon.html index 0b72740e..8305deee 100644 --- a/src/tests/__snapshots__/ChevronDownIcon.html +++ b/src/tests/__snapshots__/ChevronDownIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ChevronLeftIcon.html b/src/tests/__snapshots__/ChevronLeftIcon.html index 3b6e8b2d..fb58758e 100644 --- a/src/tests/__snapshots__/ChevronLeftIcon.html +++ b/src/tests/__snapshots__/ChevronLeftIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ChevronRightIcon.html b/src/tests/__snapshots__/ChevronRightIcon.html index 19983079..6aea7ff7 100644 --- a/src/tests/__snapshots__/ChevronRightIcon.html +++ b/src/tests/__snapshots__/ChevronRightIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ChevronUpIcon.html b/src/tests/__snapshots__/ChevronUpIcon.html index 0a74c0d5..5bd786a3 100644 --- a/src/tests/__snapshots__/ChevronUpIcon.html +++ b/src/tests/__snapshots__/ChevronUpIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ClearIcon.html b/src/tests/__snapshots__/ClearIcon.html index 2ae5389f..251e1ba7 100644 --- a/src/tests/__snapshots__/ClearIcon.html +++ b/src/tests/__snapshots__/ClearIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ClipboardIcon.html b/src/tests/__snapshots__/ClipboardIcon.html index d614a548..073d57fa 100644 --- a/src/tests/__snapshots__/ClipboardIcon.html +++ b/src/tests/__snapshots__/ClipboardIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ClockIcon.html b/src/tests/__snapshots__/ClockIcon.html index 8327bb14..b3e0c7af 100644 --- a/src/tests/__snapshots__/ClockIcon.html +++ b/src/tests/__snapshots__/ClockIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/CloseIcon.html b/src/tests/__snapshots__/CloseIcon.html index 2195a329..5a6a4410 100644 --- a/src/tests/__snapshots__/CloseIcon.html +++ b/src/tests/__snapshots__/CloseIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/CloudDownloadIcon.html b/src/tests/__snapshots__/CloudDownloadIcon.html index f123bc5c..dbf9fbbb 100644 --- a/src/tests/__snapshots__/CloudDownloadIcon.html +++ b/src/tests/__snapshots__/CloudDownloadIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/CloudIcon.html b/src/tests/__snapshots__/CloudIcon.html index 3fc59e17..abcf60be 100644 --- a/src/tests/__snapshots__/CloudIcon.html +++ b/src/tests/__snapshots__/CloudIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/CloudUploadIcon.html b/src/tests/__snapshots__/CloudUploadIcon.html index da2917f5..3338cf19 100644 --- a/src/tests/__snapshots__/CloudUploadIcon.html +++ b/src/tests/__snapshots__/CloudUploadIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/CodeIcon.html b/src/tests/__snapshots__/CodeIcon.html index da1720ae..f02fcfd6 100644 --- a/src/tests/__snapshots__/CodeIcon.html +++ b/src/tests/__snapshots__/CodeIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/CodeblockIcon.html b/src/tests/__snapshots__/CodeblockIcon.html index bcd66e9f..7080bec1 100644 --- a/src/tests/__snapshots__/CodeblockIcon.html +++ b/src/tests/__snapshots__/CodeblockIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/CogIcon.html b/src/tests/__snapshots__/CogIcon.html index 0aa243a1..55a75a82 100644 --- a/src/tests/__snapshots__/CogIcon.html +++ b/src/tests/__snapshots__/CogIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/CogModeIcon.html b/src/tests/__snapshots__/CogModeIcon.html index 20f5cf31..c32c9c97 100644 --- a/src/tests/__snapshots__/CogModeIcon.html +++ b/src/tests/__snapshots__/CogModeIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/CollapseIcon.html b/src/tests/__snapshots__/CollapseIcon.html index 990ae36b..816d4aab 100644 --- a/src/tests/__snapshots__/CollapseIcon.html +++ b/src/tests/__snapshots__/CollapseIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/CollapsePanelIcon.html b/src/tests/__snapshots__/CollapsePanelIcon.html index f965ecd3..c6c149be 100644 --- a/src/tests/__snapshots__/CollapsePanelIcon.html +++ b/src/tests/__snapshots__/CollapsePanelIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ConnectionsIcon.html b/src/tests/__snapshots__/ConnectionsIcon.html index c5ef1900..20f4554f 100644 --- a/src/tests/__snapshots__/ConnectionsIcon.html +++ b/src/tests/__snapshots__/ConnectionsIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/CopyIcon.html b/src/tests/__snapshots__/CopyIcon.html index 6bbc2065..e1312443 100644 --- a/src/tests/__snapshots__/CopyIcon.html +++ b/src/tests/__snapshots__/CopyIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/DangerCircleIcon.html b/src/tests/__snapshots__/DangerCircleIcon.html index f174b6de..ad6bd35a 100644 --- a/src/tests/__snapshots__/DangerCircleIcon.html +++ b/src/tests/__snapshots__/DangerCircleIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/DangerIcon.html b/src/tests/__snapshots__/DangerIcon.html index db48f634..09f381de 100644 --- a/src/tests/__snapshots__/DangerIcon.html +++ b/src/tests/__snapshots__/DangerIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/DashboardIcon.html b/src/tests/__snapshots__/DashboardIcon.html index a361a471..2d7d3ae3 100644 --- a/src/tests/__snapshots__/DashboardIcon.html +++ b/src/tests/__snapshots__/DashboardIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/DataObjectIcon.html b/src/tests/__snapshots__/DataObjectIcon.html index e149a737..e203b898 100644 --- a/src/tests/__snapshots__/DataObjectIcon.html +++ b/src/tests/__snapshots__/DataObjectIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/DataReportIcon.html b/src/tests/__snapshots__/DataReportIcon.html index 5164dc2e..118e8bdc 100644 --- a/src/tests/__snapshots__/DataReportIcon.html +++ b/src/tests/__snapshots__/DataReportIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/DecreaseIcon.html b/src/tests/__snapshots__/DecreaseIcon.html index d56dcea5..2dcea43e 100644 --- a/src/tests/__snapshots__/DecreaseIcon.html +++ b/src/tests/__snapshots__/DecreaseIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/DeployIcon.html b/src/tests/__snapshots__/DeployIcon.html index caad86d3..505168ed 100644 --- a/src/tests/__snapshots__/DeployIcon.html +++ b/src/tests/__snapshots__/DeployIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/DevPortalIcon.html b/src/tests/__snapshots__/DevPortalIcon.html index 06fcd983..f0ce6175 100644 --- a/src/tests/__snapshots__/DevPortalIcon.html +++ b/src/tests/__snapshots__/DevPortalIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/DisabledIcon.html b/src/tests/__snapshots__/DisabledIcon.html index 89ebab46..5907a3be 100644 --- a/src/tests/__snapshots__/DisabledIcon.html +++ b/src/tests/__snapshots__/DisabledIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/DockerIcon.html b/src/tests/__snapshots__/DockerIcon.html index 68cae3c2..011e1cae 100644 --- a/src/tests/__snapshots__/DockerIcon.html +++ b/src/tests/__snapshots__/DockerIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/DocumentIcon.html b/src/tests/__snapshots__/DocumentIcon.html index 79050246..9f4926f2 100644 --- a/src/tests/__snapshots__/DocumentIcon.html +++ b/src/tests/__snapshots__/DocumentIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/DocumentListIcon.html b/src/tests/__snapshots__/DocumentListIcon.html index 4d9b27af..79a91e2c 100644 --- a/src/tests/__snapshots__/DocumentListIcon.html +++ b/src/tests/__snapshots__/DocumentListIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/DownloadIcon.html b/src/tests/__snapshots__/DownloadIcon.html index 46476d32..08bfc830 100644 --- a/src/tests/__snapshots__/DownloadIcon.html +++ b/src/tests/__snapshots__/DownloadIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/DragIcon.html b/src/tests/__snapshots__/DragIcon.html index 7bfa23a3..42dbb9e6 100644 --- a/src/tests/__snapshots__/DragIcon.html +++ b/src/tests/__snapshots__/DragIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/EditIcon.html b/src/tests/__snapshots__/EditIcon.html index c0a31e9f..b560c23f 100644 --- a/src/tests/__snapshots__/EditIcon.html +++ b/src/tests/__snapshots__/EditIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/EmailIcon.html b/src/tests/__snapshots__/EmailIcon.html index c18651ab..3e5ffe58 100644 --- a/src/tests/__snapshots__/EmailIcon.html +++ b/src/tests/__snapshots__/EmailIcon.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/tests/__snapshots__/EqualIcon.html b/src/tests/__snapshots__/EqualIcon.html index 71a54ec4..eec2cf6f 100644 --- a/src/tests/__snapshots__/EqualIcon.html +++ b/src/tests/__snapshots__/EqualIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ExpandIcon.html b/src/tests/__snapshots__/ExpandIcon.html index 5f9e0bba..f5bbf49d 100644 --- a/src/tests/__snapshots__/ExpandIcon.html +++ b/src/tests/__snapshots__/ExpandIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ExternalLinkIcon.html b/src/tests/__snapshots__/ExternalLinkIcon.html index 91321f6b..3098d033 100644 --- a/src/tests/__snapshots__/ExternalLinkIcon.html +++ b/src/tests/__snapshots__/ExternalLinkIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/FeatureRequestIcon.html b/src/tests/__snapshots__/FeatureRequestIcon.html index d50fb69f..fab9c8e9 100644 --- a/src/tests/__snapshots__/FeatureRequestIcon.html +++ b/src/tests/__snapshots__/FeatureRequestIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/FeedbackIcon.html b/src/tests/__snapshots__/FeedbackIcon.html index f3d1ac1c..a49e620c 100644 --- a/src/tests/__snapshots__/FeedbackIcon.html +++ b/src/tests/__snapshots__/FeedbackIcon.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/tests/__snapshots__/FileEmptyIcon.html b/src/tests/__snapshots__/FileEmptyIcon.html index 0d6a1d18..c43b85f7 100644 --- a/src/tests/__snapshots__/FileEmptyIcon.html +++ b/src/tests/__snapshots__/FileEmptyIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/FilterIcon.html b/src/tests/__snapshots__/FilterIcon.html index 4a972234..1e6db292 100644 --- a/src/tests/__snapshots__/FilterIcon.html +++ b/src/tests/__snapshots__/FilterIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagAdIcon.html b/src/tests/__snapshots__/FlagAdIcon.html index 0ec85fc9..f0d9b109 100644 --- a/src/tests/__snapshots__/FlagAdIcon.html +++ b/src/tests/__snapshots__/FlagAdIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagAeIcon.html b/src/tests/__snapshots__/FlagAeIcon.html index e5381701..c263cf46 100644 --- a/src/tests/__snapshots__/FlagAeIcon.html +++ b/src/tests/__snapshots__/FlagAeIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagAfIcon.html b/src/tests/__snapshots__/FlagAfIcon.html index 8482206e..71a97f0d 100644 --- a/src/tests/__snapshots__/FlagAfIcon.html +++ b/src/tests/__snapshots__/FlagAfIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagAgIcon.html b/src/tests/__snapshots__/FlagAgIcon.html index 7571223f..644ae318 100644 --- a/src/tests/__snapshots__/FlagAgIcon.html +++ b/src/tests/__snapshots__/FlagAgIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagAiIcon.html b/src/tests/__snapshots__/FlagAiIcon.html index ce7292f1..778a2e99 100644 --- a/src/tests/__snapshots__/FlagAiIcon.html +++ b/src/tests/__snapshots__/FlagAiIcon.html @@ -1 +1,17 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagAlIcon.html b/src/tests/__snapshots__/FlagAlIcon.html index 0a114524..0c158357 100644 --- a/src/tests/__snapshots__/FlagAlIcon.html +++ b/src/tests/__snapshots__/FlagAlIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagAmIcon.html b/src/tests/__snapshots__/FlagAmIcon.html index c4a8386e..acae084a 100644 --- a/src/tests/__snapshots__/FlagAmIcon.html +++ b/src/tests/__snapshots__/FlagAmIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagAoIcon.html b/src/tests/__snapshots__/FlagAoIcon.html index 41f48e79..248cfe9d 100644 --- a/src/tests/__snapshots__/FlagAoIcon.html +++ b/src/tests/__snapshots__/FlagAoIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagArIcon.html b/src/tests/__snapshots__/FlagArIcon.html index da22482b..8474dcc2 100644 --- a/src/tests/__snapshots__/FlagArIcon.html +++ b/src/tests/__snapshots__/FlagArIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagAsIcon.html b/src/tests/__snapshots__/FlagAsIcon.html index 82a1673e..df0c2fb8 100644 --- a/src/tests/__snapshots__/FlagAsIcon.html +++ b/src/tests/__snapshots__/FlagAsIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagAtIcon.html b/src/tests/__snapshots__/FlagAtIcon.html index ffddeb6f..5c179cd0 100644 --- a/src/tests/__snapshots__/FlagAtIcon.html +++ b/src/tests/__snapshots__/FlagAtIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagAuIcon.html b/src/tests/__snapshots__/FlagAuIcon.html index 4d82a2d4..4febe51c 100644 --- a/src/tests/__snapshots__/FlagAuIcon.html +++ b/src/tests/__snapshots__/FlagAuIcon.html @@ -1 +1,19 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagAwIcon.html b/src/tests/__snapshots__/FlagAwIcon.html index 99273be8..41002372 100644 --- a/src/tests/__snapshots__/FlagAwIcon.html +++ b/src/tests/__snapshots__/FlagAwIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagAxIcon.html b/src/tests/__snapshots__/FlagAxIcon.html index e377f6b8..d682b123 100644 --- a/src/tests/__snapshots__/FlagAxIcon.html +++ b/src/tests/__snapshots__/FlagAxIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagAzIcon.html b/src/tests/__snapshots__/FlagAzIcon.html index 442f4062..144e8c81 100644 --- a/src/tests/__snapshots__/FlagAzIcon.html +++ b/src/tests/__snapshots__/FlagAzIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBaIcon.html b/src/tests/__snapshots__/FlagBaIcon.html index 183f2fad..5dda2737 100644 --- a/src/tests/__snapshots__/FlagBaIcon.html +++ b/src/tests/__snapshots__/FlagBaIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBbIcon.html b/src/tests/__snapshots__/FlagBbIcon.html index 903f9f0e..3f3606ba 100644 --- a/src/tests/__snapshots__/FlagBbIcon.html +++ b/src/tests/__snapshots__/FlagBbIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBdIcon.html b/src/tests/__snapshots__/FlagBdIcon.html index bcd21b4a..bedce9e9 100644 --- a/src/tests/__snapshots__/FlagBdIcon.html +++ b/src/tests/__snapshots__/FlagBdIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBeIcon.html b/src/tests/__snapshots__/FlagBeIcon.html index d9ef9881..a8a66375 100644 --- a/src/tests/__snapshots__/FlagBeIcon.html +++ b/src/tests/__snapshots__/FlagBeIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBfIcon.html b/src/tests/__snapshots__/FlagBfIcon.html index dba4cf2a..440b94c2 100644 --- a/src/tests/__snapshots__/FlagBfIcon.html +++ b/src/tests/__snapshots__/FlagBfIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBgIcon.html b/src/tests/__snapshots__/FlagBgIcon.html index ee847a1c..87ca87af 100644 --- a/src/tests/__snapshots__/FlagBgIcon.html +++ b/src/tests/__snapshots__/FlagBgIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBhIcon.html b/src/tests/__snapshots__/FlagBhIcon.html index a8d51fa8..12e86535 100644 --- a/src/tests/__snapshots__/FlagBhIcon.html +++ b/src/tests/__snapshots__/FlagBhIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBiIcon.html b/src/tests/__snapshots__/FlagBiIcon.html index b3872866..4808ba24 100644 --- a/src/tests/__snapshots__/FlagBiIcon.html +++ b/src/tests/__snapshots__/FlagBiIcon.html @@ -1 +1,16 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBjIcon.html b/src/tests/__snapshots__/FlagBjIcon.html index 9b86f27b..b2a9a126 100644 --- a/src/tests/__snapshots__/FlagBjIcon.html +++ b/src/tests/__snapshots__/FlagBjIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBlIcon.html b/src/tests/__snapshots__/FlagBlIcon.html index 14519849..aefe4c53 100644 --- a/src/tests/__snapshots__/FlagBlIcon.html +++ b/src/tests/__snapshots__/FlagBlIcon.html @@ -1 +1,14 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBmIcon.html b/src/tests/__snapshots__/FlagBmIcon.html index 1d035ef9..f34ccf52 100644 --- a/src/tests/__snapshots__/FlagBmIcon.html +++ b/src/tests/__snapshots__/FlagBmIcon.html @@ -1 +1,18 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBnIcon.html b/src/tests/__snapshots__/FlagBnIcon.html index 4e9cdb61..72f4341c 100644 --- a/src/tests/__snapshots__/FlagBnIcon.html +++ b/src/tests/__snapshots__/FlagBnIcon.html @@ -1 +1,17 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBoIcon.html b/src/tests/__snapshots__/FlagBoIcon.html index 20d741f9..a887c1a5 100644 --- a/src/tests/__snapshots__/FlagBoIcon.html +++ b/src/tests/__snapshots__/FlagBoIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBrIcon.html b/src/tests/__snapshots__/FlagBrIcon.html index 87abd451..c50498db 100644 --- a/src/tests/__snapshots__/FlagBrIcon.html +++ b/src/tests/__snapshots__/FlagBrIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBsIcon.html b/src/tests/__snapshots__/FlagBsIcon.html index cbe2c04c..e500deca 100644 --- a/src/tests/__snapshots__/FlagBsIcon.html +++ b/src/tests/__snapshots__/FlagBsIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBtIcon.html b/src/tests/__snapshots__/FlagBtIcon.html index 110f1cdb..522bdf63 100644 --- a/src/tests/__snapshots__/FlagBtIcon.html +++ b/src/tests/__snapshots__/FlagBtIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBwIcon.html b/src/tests/__snapshots__/FlagBwIcon.html index e6900029..d04042d1 100644 --- a/src/tests/__snapshots__/FlagBwIcon.html +++ b/src/tests/__snapshots__/FlagBwIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagByIcon.html b/src/tests/__snapshots__/FlagByIcon.html index ce5b4119..f39973b2 100644 --- a/src/tests/__snapshots__/FlagByIcon.html +++ b/src/tests/__snapshots__/FlagByIcon.html @@ -1 +1,16 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagBzIcon.html b/src/tests/__snapshots__/FlagBzIcon.html index 091d6529..7c9b1eac 100644 --- a/src/tests/__snapshots__/FlagBzIcon.html +++ b/src/tests/__snapshots__/FlagBzIcon.html @@ -1 +1,15 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagCaIcon.html b/src/tests/__snapshots__/FlagCaIcon.html index b104f083..2d4fbc58 100644 --- a/src/tests/__snapshots__/FlagCaIcon.html +++ b/src/tests/__snapshots__/FlagCaIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagCcIcon.html b/src/tests/__snapshots__/FlagCcIcon.html index 67bf8762..6e979559 100644 --- a/src/tests/__snapshots__/FlagCcIcon.html +++ b/src/tests/__snapshots__/FlagCcIcon.html @@ -1 +1,17 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagCdIcon.html b/src/tests/__snapshots__/FlagCdIcon.html index 3023e769..a6d5dde6 100644 --- a/src/tests/__snapshots__/FlagCdIcon.html +++ b/src/tests/__snapshots__/FlagCdIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagCfIcon.html b/src/tests/__snapshots__/FlagCfIcon.html index 88ef1410..4a166d10 100644 --- a/src/tests/__snapshots__/FlagCfIcon.html +++ b/src/tests/__snapshots__/FlagCfIcon.html @@ -1 +1,18 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagChIcon.html b/src/tests/__snapshots__/FlagChIcon.html index d3c8a633..abd6668e 100644 --- a/src/tests/__snapshots__/FlagChIcon.html +++ b/src/tests/__snapshots__/FlagChIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagCiIcon.html b/src/tests/__snapshots__/FlagCiIcon.html index 434bc9e3..9db93afe 100644 --- a/src/tests/__snapshots__/FlagCiIcon.html +++ b/src/tests/__snapshots__/FlagCiIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagCkIcon.html b/src/tests/__snapshots__/FlagCkIcon.html index ee3e983f..f082f886 100644 --- a/src/tests/__snapshots__/FlagCkIcon.html +++ b/src/tests/__snapshots__/FlagCkIcon.html @@ -1 +1,20 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagClIcon.html b/src/tests/__snapshots__/FlagClIcon.html index e7557bd1..e2160660 100644 --- a/src/tests/__snapshots__/FlagClIcon.html +++ b/src/tests/__snapshots__/FlagClIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagCmIcon.html b/src/tests/__snapshots__/FlagCmIcon.html index 8752372e..7928c6a6 100644 --- a/src/tests/__snapshots__/FlagCmIcon.html +++ b/src/tests/__snapshots__/FlagCmIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagCnIcon.html b/src/tests/__snapshots__/FlagCnIcon.html index 0c9dfc75..abe4960f 100644 --- a/src/tests/__snapshots__/FlagCnIcon.html +++ b/src/tests/__snapshots__/FlagCnIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagCoIcon.html b/src/tests/__snapshots__/FlagCoIcon.html index 3bb151f2..f8c4f085 100644 --- a/src/tests/__snapshots__/FlagCoIcon.html +++ b/src/tests/__snapshots__/FlagCoIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagCrIcon.html b/src/tests/__snapshots__/FlagCrIcon.html index 8aa9ddc0..e65c7222 100644 --- a/src/tests/__snapshots__/FlagCrIcon.html +++ b/src/tests/__snapshots__/FlagCrIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagCuIcon.html b/src/tests/__snapshots__/FlagCuIcon.html index 739c0f99..66443c21 100644 --- a/src/tests/__snapshots__/FlagCuIcon.html +++ b/src/tests/__snapshots__/FlagCuIcon.html @@ -1 +1,14 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagCvIcon.html b/src/tests/__snapshots__/FlagCvIcon.html index 0473592a..dafb7ec5 100644 --- a/src/tests/__snapshots__/FlagCvIcon.html +++ b/src/tests/__snapshots__/FlagCvIcon.html @@ -1 +1,21 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagCyIcon.html b/src/tests/__snapshots__/FlagCyIcon.html index 2ba96102..3f936b56 100644 --- a/src/tests/__snapshots__/FlagCyIcon.html +++ b/src/tests/__snapshots__/FlagCyIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagCzIcon.html b/src/tests/__snapshots__/FlagCzIcon.html index c9d24295..f5458661 100644 --- a/src/tests/__snapshots__/FlagCzIcon.html +++ b/src/tests/__snapshots__/FlagCzIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagDeIcon.html b/src/tests/__snapshots__/FlagDeIcon.html index d91086a7..fa34f9cc 100644 --- a/src/tests/__snapshots__/FlagDeIcon.html +++ b/src/tests/__snapshots__/FlagDeIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagDjIcon.html b/src/tests/__snapshots__/FlagDjIcon.html index 245ba36e..e8dc8837 100644 --- a/src/tests/__snapshots__/FlagDjIcon.html +++ b/src/tests/__snapshots__/FlagDjIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagDkIcon.html b/src/tests/__snapshots__/FlagDkIcon.html index a432922f..6ce0a943 100644 --- a/src/tests/__snapshots__/FlagDkIcon.html +++ b/src/tests/__snapshots__/FlagDkIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagDmIcon.html b/src/tests/__snapshots__/FlagDmIcon.html index a90baea9..b300b537 100644 --- a/src/tests/__snapshots__/FlagDmIcon.html +++ b/src/tests/__snapshots__/FlagDmIcon.html @@ -1 +1,32 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagDoIcon.html b/src/tests/__snapshots__/FlagDoIcon.html index 3d690c14..b71836e1 100644 --- a/src/tests/__snapshots__/FlagDoIcon.html +++ b/src/tests/__snapshots__/FlagDoIcon.html @@ -1 +1,15 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagDzIcon.html b/src/tests/__snapshots__/FlagDzIcon.html index 5041276b..34be07c2 100644 --- a/src/tests/__snapshots__/FlagDzIcon.html +++ b/src/tests/__snapshots__/FlagDzIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagEcIcon.html b/src/tests/__snapshots__/FlagEcIcon.html index 9141ff2b..8ae70f4a 100644 --- a/src/tests/__snapshots__/FlagEcIcon.html +++ b/src/tests/__snapshots__/FlagEcIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagEeIcon.html b/src/tests/__snapshots__/FlagEeIcon.html index 7e16fea1..b7f64a51 100644 --- a/src/tests/__snapshots__/FlagEeIcon.html +++ b/src/tests/__snapshots__/FlagEeIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagEgIcon.html b/src/tests/__snapshots__/FlagEgIcon.html index 1677821a..0ee7291a 100644 --- a/src/tests/__snapshots__/FlagEgIcon.html +++ b/src/tests/__snapshots__/FlagEgIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagErIcon.html b/src/tests/__snapshots__/FlagErIcon.html index 4e0b5f45..b7d7427b 100644 --- a/src/tests/__snapshots__/FlagErIcon.html +++ b/src/tests/__snapshots__/FlagErIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagEsIcon.html b/src/tests/__snapshots__/FlagEsIcon.html index 48e36eca..b1cd2d86 100644 --- a/src/tests/__snapshots__/FlagEsIcon.html +++ b/src/tests/__snapshots__/FlagEsIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagEtIcon.html b/src/tests/__snapshots__/FlagEtIcon.html index 5b260cac..e61cd3e7 100644 --- a/src/tests/__snapshots__/FlagEtIcon.html +++ b/src/tests/__snapshots__/FlagEtIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagEuIcon.html b/src/tests/__snapshots__/FlagEuIcon.html index 30c80c04..7bc12f4c 100644 --- a/src/tests/__snapshots__/FlagEuIcon.html +++ b/src/tests/__snapshots__/FlagEuIcon.html @@ -1 +1,16 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagFiIcon.html b/src/tests/__snapshots__/FlagFiIcon.html index 070438ed..94a3d1be 100644 --- a/src/tests/__snapshots__/FlagFiIcon.html +++ b/src/tests/__snapshots__/FlagFiIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagFjIcon.html b/src/tests/__snapshots__/FlagFjIcon.html index 9423a82e..7a06822a 100644 --- a/src/tests/__snapshots__/FlagFjIcon.html +++ b/src/tests/__snapshots__/FlagFjIcon.html @@ -1 +1,16 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagFkIcon.html b/src/tests/__snapshots__/FlagFkIcon.html index 3e52a153..300f4135 100644 --- a/src/tests/__snapshots__/FlagFkIcon.html +++ b/src/tests/__snapshots__/FlagFkIcon.html @@ -1 +1,16 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagFmIcon.html b/src/tests/__snapshots__/FlagFmIcon.html index 8708adb0..025745d5 100644 --- a/src/tests/__snapshots__/FlagFmIcon.html +++ b/src/tests/__snapshots__/FlagFmIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagFoIcon.html b/src/tests/__snapshots__/FlagFoIcon.html index 1d77ed7d..3bd71296 100644 --- a/src/tests/__snapshots__/FlagFoIcon.html +++ b/src/tests/__snapshots__/FlagFoIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagFrIcon.html b/src/tests/__snapshots__/FlagFrIcon.html index c55cccf8..14291aed 100644 --- a/src/tests/__snapshots__/FlagFrIcon.html +++ b/src/tests/__snapshots__/FlagFrIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagGaIcon.html b/src/tests/__snapshots__/FlagGaIcon.html index ef927a38..b509b242 100644 --- a/src/tests/__snapshots__/FlagGaIcon.html +++ b/src/tests/__snapshots__/FlagGaIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagGbIcon.html b/src/tests/__snapshots__/FlagGbIcon.html index 6b769971..8405f942 100644 --- a/src/tests/__snapshots__/FlagGbIcon.html +++ b/src/tests/__snapshots__/FlagGbIcon.html @@ -1 +1,21 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagGdIcon.html b/src/tests/__snapshots__/FlagGdIcon.html index 8567abe6..da40d807 100644 --- a/src/tests/__snapshots__/FlagGdIcon.html +++ b/src/tests/__snapshots__/FlagGdIcon.html @@ -1 +1,24 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagGeIcon.html b/src/tests/__snapshots__/FlagGeIcon.html index eb1c71d8..71b69fbe 100644 --- a/src/tests/__snapshots__/FlagGeIcon.html +++ b/src/tests/__snapshots__/FlagGeIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagGgIcon.html b/src/tests/__snapshots__/FlagGgIcon.html index 8e500838..92497afa 100644 --- a/src/tests/__snapshots__/FlagGgIcon.html +++ b/src/tests/__snapshots__/FlagGgIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagGhIcon.html b/src/tests/__snapshots__/FlagGhIcon.html index 1a701ee2..c613bc03 100644 --- a/src/tests/__snapshots__/FlagGhIcon.html +++ b/src/tests/__snapshots__/FlagGhIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagGiIcon.html b/src/tests/__snapshots__/FlagGiIcon.html index d711ca02..68da5453 100644 --- a/src/tests/__snapshots__/FlagGiIcon.html +++ b/src/tests/__snapshots__/FlagGiIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagGlIcon.html b/src/tests/__snapshots__/FlagGlIcon.html index bb9ebc9c..793c474c 100644 --- a/src/tests/__snapshots__/FlagGlIcon.html +++ b/src/tests/__snapshots__/FlagGlIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagGmIcon.html b/src/tests/__snapshots__/FlagGmIcon.html index 1af23b7b..0f59ce04 100644 --- a/src/tests/__snapshots__/FlagGmIcon.html +++ b/src/tests/__snapshots__/FlagGmIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagGnIcon.html b/src/tests/__snapshots__/FlagGnIcon.html index 1f8e86c5..e86f2e6e 100644 --- a/src/tests/__snapshots__/FlagGnIcon.html +++ b/src/tests/__snapshots__/FlagGnIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagGqIcon.html b/src/tests/__snapshots__/FlagGqIcon.html index e7f1eba6..d289cafd 100644 --- a/src/tests/__snapshots__/FlagGqIcon.html +++ b/src/tests/__snapshots__/FlagGqIcon.html @@ -1 +1,14 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagGrIcon.html b/src/tests/__snapshots__/FlagGrIcon.html index de633420..b862da10 100644 --- a/src/tests/__snapshots__/FlagGrIcon.html +++ b/src/tests/__snapshots__/FlagGrIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagGtIcon.html b/src/tests/__snapshots__/FlagGtIcon.html index 33551859..6588bb22 100644 --- a/src/tests/__snapshots__/FlagGtIcon.html +++ b/src/tests/__snapshots__/FlagGtIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagGuIcon.html b/src/tests/__snapshots__/FlagGuIcon.html index dabde94c..72c795bc 100644 --- a/src/tests/__snapshots__/FlagGuIcon.html +++ b/src/tests/__snapshots__/FlagGuIcon.html @@ -1 +1,16 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagGwIcon.html b/src/tests/__snapshots__/FlagGwIcon.html index b377ed40..c7f23ee8 100644 --- a/src/tests/__snapshots__/FlagGwIcon.html +++ b/src/tests/__snapshots__/FlagGwIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagGyIcon.html b/src/tests/__snapshots__/FlagGyIcon.html index 64186b55..dca96f61 100644 --- a/src/tests/__snapshots__/FlagGyIcon.html +++ b/src/tests/__snapshots__/FlagGyIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagHkIcon.html b/src/tests/__snapshots__/FlagHkIcon.html index bd1e0152..df8fad75 100644 --- a/src/tests/__snapshots__/FlagHkIcon.html +++ b/src/tests/__snapshots__/FlagHkIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagHnIcon.html b/src/tests/__snapshots__/FlagHnIcon.html index d8ad409c..abc2da29 100644 --- a/src/tests/__snapshots__/FlagHnIcon.html +++ b/src/tests/__snapshots__/FlagHnIcon.html @@ -1 +1,15 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagHrIcon.html b/src/tests/__snapshots__/FlagHrIcon.html index 405a4ded..99df8ad2 100644 --- a/src/tests/__snapshots__/FlagHrIcon.html +++ b/src/tests/__snapshots__/FlagHrIcon.html @@ -1 +1,29 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagHtIcon.html b/src/tests/__snapshots__/FlagHtIcon.html index e4975883..98be9c7c 100644 --- a/src/tests/__snapshots__/FlagHtIcon.html +++ b/src/tests/__snapshots__/FlagHtIcon.html @@ -1 +1,15 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagHuIcon.html b/src/tests/__snapshots__/FlagHuIcon.html index 543dfe5f..6cf5f815 100644 --- a/src/tests/__snapshots__/FlagHuIcon.html +++ b/src/tests/__snapshots__/FlagHuIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagIcon.html b/src/tests/__snapshots__/FlagIcon.html index 0b40c544..c4b02a9e 100644 --- a/src/tests/__snapshots__/FlagIcon.html +++ b/src/tests/__snapshots__/FlagIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagIdIcon.html b/src/tests/__snapshots__/FlagIdIcon.html index fcb822dd..e87b2e54 100644 --- a/src/tests/__snapshots__/FlagIdIcon.html +++ b/src/tests/__snapshots__/FlagIdIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagIeIcon.html b/src/tests/__snapshots__/FlagIeIcon.html index 35300660..209f04cc 100644 --- a/src/tests/__snapshots__/FlagIeIcon.html +++ b/src/tests/__snapshots__/FlagIeIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagIlIcon.html b/src/tests/__snapshots__/FlagIlIcon.html index f67e94f6..c7d48bf1 100644 --- a/src/tests/__snapshots__/FlagIlIcon.html +++ b/src/tests/__snapshots__/FlagIlIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagImIcon.html b/src/tests/__snapshots__/FlagImIcon.html index c6ff5081..ef752516 100644 --- a/src/tests/__snapshots__/FlagImIcon.html +++ b/src/tests/__snapshots__/FlagImIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagInIcon.html b/src/tests/__snapshots__/FlagInIcon.html index 07a5073b..d5236926 100644 --- a/src/tests/__snapshots__/FlagInIcon.html +++ b/src/tests/__snapshots__/FlagInIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagIoIcon.html b/src/tests/__snapshots__/FlagIoIcon.html index 293cf361..2b62ec35 100644 --- a/src/tests/__snapshots__/FlagIoIcon.html +++ b/src/tests/__snapshots__/FlagIoIcon.html @@ -1 +1,27 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagIqIcon.html b/src/tests/__snapshots__/FlagIqIcon.html index fb3fe7fc..3a6700b1 100644 --- a/src/tests/__snapshots__/FlagIqIcon.html +++ b/src/tests/__snapshots__/FlagIqIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagIrIcon.html b/src/tests/__snapshots__/FlagIrIcon.html index 85a29d43..e7cbbf02 100644 --- a/src/tests/__snapshots__/FlagIrIcon.html +++ b/src/tests/__snapshots__/FlagIrIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagIsIcon.html b/src/tests/__snapshots__/FlagIsIcon.html index 9ba2db51..cf92c808 100644 --- a/src/tests/__snapshots__/FlagIsIcon.html +++ b/src/tests/__snapshots__/FlagIsIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagItIcon.html b/src/tests/__snapshots__/FlagItIcon.html index c9612f39..55d7e1c3 100644 --- a/src/tests/__snapshots__/FlagItIcon.html +++ b/src/tests/__snapshots__/FlagItIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagJeIcon.html b/src/tests/__snapshots__/FlagJeIcon.html index f5e5c992..4f934573 100644 --- a/src/tests/__snapshots__/FlagJeIcon.html +++ b/src/tests/__snapshots__/FlagJeIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagJmIcon.html b/src/tests/__snapshots__/FlagJmIcon.html index 5f65f8b5..85a30c72 100644 --- a/src/tests/__snapshots__/FlagJmIcon.html +++ b/src/tests/__snapshots__/FlagJmIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagJoIcon.html b/src/tests/__snapshots__/FlagJoIcon.html index a0c800ba..f4602188 100644 --- a/src/tests/__snapshots__/FlagJoIcon.html +++ b/src/tests/__snapshots__/FlagJoIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagJpIcon.html b/src/tests/__snapshots__/FlagJpIcon.html index 20725d54..6ac95424 100644 --- a/src/tests/__snapshots__/FlagJpIcon.html +++ b/src/tests/__snapshots__/FlagJpIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagKeIcon.html b/src/tests/__snapshots__/FlagKeIcon.html index 408213f3..d820ddfc 100644 --- a/src/tests/__snapshots__/FlagKeIcon.html +++ b/src/tests/__snapshots__/FlagKeIcon.html @@ -1 +1,17 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagKgIcon.html b/src/tests/__snapshots__/FlagKgIcon.html index 23d48c18..40966eca 100644 --- a/src/tests/__snapshots__/FlagKgIcon.html +++ b/src/tests/__snapshots__/FlagKgIcon.html @@ -1 +1,14 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagKhIcon.html b/src/tests/__snapshots__/FlagKhIcon.html index e5434091..c2f9fb8e 100644 --- a/src/tests/__snapshots__/FlagKhIcon.html +++ b/src/tests/__snapshots__/FlagKhIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagKiIcon.html b/src/tests/__snapshots__/FlagKiIcon.html index 32d547e0..531ef165 100644 --- a/src/tests/__snapshots__/FlagKiIcon.html +++ b/src/tests/__snapshots__/FlagKiIcon.html @@ -1 +1,15 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagKmIcon.html b/src/tests/__snapshots__/FlagKmIcon.html index 31bc61cf..6cb1bb8e 100644 --- a/src/tests/__snapshots__/FlagKmIcon.html +++ b/src/tests/__snapshots__/FlagKmIcon.html @@ -1 +1,17 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagKpIcon.html b/src/tests/__snapshots__/FlagKpIcon.html index c506d5d4..f1634f87 100644 --- a/src/tests/__snapshots__/FlagKpIcon.html +++ b/src/tests/__snapshots__/FlagKpIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagKrIcon.html b/src/tests/__snapshots__/FlagKrIcon.html index 8c735578..0c380fe9 100644 --- a/src/tests/__snapshots__/FlagKrIcon.html +++ b/src/tests/__snapshots__/FlagKrIcon.html @@ -1 +1,28 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagKwIcon.html b/src/tests/__snapshots__/FlagKwIcon.html index 38e1dbb2..dd6f8e77 100644 --- a/src/tests/__snapshots__/FlagKwIcon.html +++ b/src/tests/__snapshots__/FlagKwIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagKyIcon.html b/src/tests/__snapshots__/FlagKyIcon.html index 9efac79b..64861083 100644 --- a/src/tests/__snapshots__/FlagKyIcon.html +++ b/src/tests/__snapshots__/FlagKyIcon.html @@ -1 +1,18 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagKzIcon.html b/src/tests/__snapshots__/FlagKzIcon.html index a7f2fd5b..77adb808 100644 --- a/src/tests/__snapshots__/FlagKzIcon.html +++ b/src/tests/__snapshots__/FlagKzIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagLaIcon.html b/src/tests/__snapshots__/FlagLaIcon.html index 072ae4be..6cb4afba 100644 --- a/src/tests/__snapshots__/FlagLaIcon.html +++ b/src/tests/__snapshots__/FlagLaIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagLbIcon.html b/src/tests/__snapshots__/FlagLbIcon.html index 6c34a2b0..8bc02a5e 100644 --- a/src/tests/__snapshots__/FlagLbIcon.html +++ b/src/tests/__snapshots__/FlagLbIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagLcIcon.html b/src/tests/__snapshots__/FlagLcIcon.html index d48f055a..a47d648c 100644 --- a/src/tests/__snapshots__/FlagLcIcon.html +++ b/src/tests/__snapshots__/FlagLcIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagLiIcon.html b/src/tests/__snapshots__/FlagLiIcon.html index 9cf82d63..4fbb9c88 100644 --- a/src/tests/__snapshots__/FlagLiIcon.html +++ b/src/tests/__snapshots__/FlagLiIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagLkIcon.html b/src/tests/__snapshots__/FlagLkIcon.html index 034c5375..14443411 100644 --- a/src/tests/__snapshots__/FlagLkIcon.html +++ b/src/tests/__snapshots__/FlagLkIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagLrIcon.html b/src/tests/__snapshots__/FlagLrIcon.html index d774c497..bd3dfe7e 100644 --- a/src/tests/__snapshots__/FlagLrIcon.html +++ b/src/tests/__snapshots__/FlagLrIcon.html @@ -1 +1,21 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagLsIcon.html b/src/tests/__snapshots__/FlagLsIcon.html index 53f8c15f..51ae27db 100644 --- a/src/tests/__snapshots__/FlagLsIcon.html +++ b/src/tests/__snapshots__/FlagLsIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagLtIcon.html b/src/tests/__snapshots__/FlagLtIcon.html index a20d0a43..b6699221 100644 --- a/src/tests/__snapshots__/FlagLtIcon.html +++ b/src/tests/__snapshots__/FlagLtIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagLuIcon.html b/src/tests/__snapshots__/FlagLuIcon.html index a8cf6896..5fcf5140 100644 --- a/src/tests/__snapshots__/FlagLuIcon.html +++ b/src/tests/__snapshots__/FlagLuIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagLvIcon.html b/src/tests/__snapshots__/FlagLvIcon.html index 755a4619..3632f278 100644 --- a/src/tests/__snapshots__/FlagLvIcon.html +++ b/src/tests/__snapshots__/FlagLvIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagLyIcon.html b/src/tests/__snapshots__/FlagLyIcon.html index a335b777..9b829182 100644 --- a/src/tests/__snapshots__/FlagLyIcon.html +++ b/src/tests/__snapshots__/FlagLyIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMaIcon.html b/src/tests/__snapshots__/FlagMaIcon.html index e35e027c..4b745a0f 100644 --- a/src/tests/__snapshots__/FlagMaIcon.html +++ b/src/tests/__snapshots__/FlagMaIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMcIcon.html b/src/tests/__snapshots__/FlagMcIcon.html index f0e4a61f..d76f4148 100644 --- a/src/tests/__snapshots__/FlagMcIcon.html +++ b/src/tests/__snapshots__/FlagMcIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMdIcon.html b/src/tests/__snapshots__/FlagMdIcon.html index a46caccb..412d1608 100644 --- a/src/tests/__snapshots__/FlagMdIcon.html +++ b/src/tests/__snapshots__/FlagMdIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMeIcon.html b/src/tests/__snapshots__/FlagMeIcon.html index c6da238e..defcb977 100644 --- a/src/tests/__snapshots__/FlagMeIcon.html +++ b/src/tests/__snapshots__/FlagMeIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMgIcon.html b/src/tests/__snapshots__/FlagMgIcon.html index 36affbaa..744d304c 100644 --- a/src/tests/__snapshots__/FlagMgIcon.html +++ b/src/tests/__snapshots__/FlagMgIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMhIcon.html b/src/tests/__snapshots__/FlagMhIcon.html index 59f27324..9f44a544 100644 --- a/src/tests/__snapshots__/FlagMhIcon.html +++ b/src/tests/__snapshots__/FlagMhIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMkIcon.html b/src/tests/__snapshots__/FlagMkIcon.html index dc04f545..5adbc6bf 100644 --- a/src/tests/__snapshots__/FlagMkIcon.html +++ b/src/tests/__snapshots__/FlagMkIcon.html @@ -1 +1,18 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMlIcon.html b/src/tests/__snapshots__/FlagMlIcon.html index 8b004a5d..1f071060 100644 --- a/src/tests/__snapshots__/FlagMlIcon.html +++ b/src/tests/__snapshots__/FlagMlIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMmIcon.html b/src/tests/__snapshots__/FlagMmIcon.html index 1bc24149..a7317060 100644 --- a/src/tests/__snapshots__/FlagMmIcon.html +++ b/src/tests/__snapshots__/FlagMmIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMnIcon.html b/src/tests/__snapshots__/FlagMnIcon.html index c848d8f9..e3c71de6 100644 --- a/src/tests/__snapshots__/FlagMnIcon.html +++ b/src/tests/__snapshots__/FlagMnIcon.html @@ -1 +1,17 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMoIcon.html b/src/tests/__snapshots__/FlagMoIcon.html index b9b93b9a..2156bdf7 100644 --- a/src/tests/__snapshots__/FlagMoIcon.html +++ b/src/tests/__snapshots__/FlagMoIcon.html @@ -1 +1,16 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMpIcon.html b/src/tests/__snapshots__/FlagMpIcon.html index ecb7f738..87065215 100644 --- a/src/tests/__snapshots__/FlagMpIcon.html +++ b/src/tests/__snapshots__/FlagMpIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMqIcon.html b/src/tests/__snapshots__/FlagMqIcon.html index 3524bd17..8418edf7 100644 --- a/src/tests/__snapshots__/FlagMqIcon.html +++ b/src/tests/__snapshots__/FlagMqIcon.html @@ -1 +1,16 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMrIcon.html b/src/tests/__snapshots__/FlagMrIcon.html index 44805fc5..5e2b6c00 100644 --- a/src/tests/__snapshots__/FlagMrIcon.html +++ b/src/tests/__snapshots__/FlagMrIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMsIcon.html b/src/tests/__snapshots__/FlagMsIcon.html index 8f5133bc..f3b4f999 100644 --- a/src/tests/__snapshots__/FlagMsIcon.html +++ b/src/tests/__snapshots__/FlagMsIcon.html @@ -1 +1,15 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMtIcon.html b/src/tests/__snapshots__/FlagMtIcon.html index 58bb5dc1..76178fcc 100644 --- a/src/tests/__snapshots__/FlagMtIcon.html +++ b/src/tests/__snapshots__/FlagMtIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMuIcon.html b/src/tests/__snapshots__/FlagMuIcon.html index 41823360..0d403f11 100644 --- a/src/tests/__snapshots__/FlagMuIcon.html +++ b/src/tests/__snapshots__/FlagMuIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMvIcon.html b/src/tests/__snapshots__/FlagMvIcon.html index 29959640..a6becb08 100644 --- a/src/tests/__snapshots__/FlagMvIcon.html +++ b/src/tests/__snapshots__/FlagMvIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMwIcon.html b/src/tests/__snapshots__/FlagMwIcon.html index ee0d1599..a763674f 100644 --- a/src/tests/__snapshots__/FlagMwIcon.html +++ b/src/tests/__snapshots__/FlagMwIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMxIcon.html b/src/tests/__snapshots__/FlagMxIcon.html index bef6a22f..dea5f0a1 100644 --- a/src/tests/__snapshots__/FlagMxIcon.html +++ b/src/tests/__snapshots__/FlagMxIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMyIcon.html b/src/tests/__snapshots__/FlagMyIcon.html index 18da5124..2305f7b0 100644 --- a/src/tests/__snapshots__/FlagMyIcon.html +++ b/src/tests/__snapshots__/FlagMyIcon.html @@ -1 +1,15 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagMzIcon.html b/src/tests/__snapshots__/FlagMzIcon.html index f6c57025..c35cfe9e 100644 --- a/src/tests/__snapshots__/FlagMzIcon.html +++ b/src/tests/__snapshots__/FlagMzIcon.html @@ -1 +1,15 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagNaIcon.html b/src/tests/__snapshots__/FlagNaIcon.html index 4198fbf3..3b7b6cdc 100644 --- a/src/tests/__snapshots__/FlagNaIcon.html +++ b/src/tests/__snapshots__/FlagNaIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagNeIcon.html b/src/tests/__snapshots__/FlagNeIcon.html index a2f4948f..e27758c5 100644 --- a/src/tests/__snapshots__/FlagNeIcon.html +++ b/src/tests/__snapshots__/FlagNeIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagNfIcon.html b/src/tests/__snapshots__/FlagNfIcon.html index 3ef288be..f9968661 100644 --- a/src/tests/__snapshots__/FlagNfIcon.html +++ b/src/tests/__snapshots__/FlagNfIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagNgIcon.html b/src/tests/__snapshots__/FlagNgIcon.html index fe946c12..d6d18987 100644 --- a/src/tests/__snapshots__/FlagNgIcon.html +++ b/src/tests/__snapshots__/FlagNgIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagNiIcon.html b/src/tests/__snapshots__/FlagNiIcon.html index cf83de7a..1c552281 100644 --- a/src/tests/__snapshots__/FlagNiIcon.html +++ b/src/tests/__snapshots__/FlagNiIcon.html @@ -1 +1,14 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagNlIcon.html b/src/tests/__snapshots__/FlagNlIcon.html index 139f6e89..b8b6fed6 100644 --- a/src/tests/__snapshots__/FlagNlIcon.html +++ b/src/tests/__snapshots__/FlagNlIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagNoIcon.html b/src/tests/__snapshots__/FlagNoIcon.html index e48f3561..bbe8d98f 100644 --- a/src/tests/__snapshots__/FlagNoIcon.html +++ b/src/tests/__snapshots__/FlagNoIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagNpIcon.html b/src/tests/__snapshots__/FlagNpIcon.html index 419c2ac1..f2ba9978 100644 --- a/src/tests/__snapshots__/FlagNpIcon.html +++ b/src/tests/__snapshots__/FlagNpIcon.html @@ -1 +1,14 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagNrIcon.html b/src/tests/__snapshots__/FlagNrIcon.html index 9edbfa7a..98512a5b 100644 --- a/src/tests/__snapshots__/FlagNrIcon.html +++ b/src/tests/__snapshots__/FlagNrIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagNuIcon.html b/src/tests/__snapshots__/FlagNuIcon.html index 72145ea1..708b27c9 100644 --- a/src/tests/__snapshots__/FlagNuIcon.html +++ b/src/tests/__snapshots__/FlagNuIcon.html @@ -1 +1,18 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagNzIcon.html b/src/tests/__snapshots__/FlagNzIcon.html index bda3e62e..2074830a 100644 --- a/src/tests/__snapshots__/FlagNzIcon.html +++ b/src/tests/__snapshots__/FlagNzIcon.html @@ -1 +1,16 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagOmIcon.html b/src/tests/__snapshots__/FlagOmIcon.html index 64770c4d..4b78ff7c 100644 --- a/src/tests/__snapshots__/FlagOmIcon.html +++ b/src/tests/__snapshots__/FlagOmIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagPaIcon.html b/src/tests/__snapshots__/FlagPaIcon.html index f845bb71..4e9789f9 100644 --- a/src/tests/__snapshots__/FlagPaIcon.html +++ b/src/tests/__snapshots__/FlagPaIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagPeIcon.html b/src/tests/__snapshots__/FlagPeIcon.html index f047df82..a6ada079 100644 --- a/src/tests/__snapshots__/FlagPeIcon.html +++ b/src/tests/__snapshots__/FlagPeIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagPfIcon.html b/src/tests/__snapshots__/FlagPfIcon.html index 0742d6dc..5d8353fa 100644 --- a/src/tests/__snapshots__/FlagPfIcon.html +++ b/src/tests/__snapshots__/FlagPfIcon.html @@ -1 +1,15 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagPgIcon.html b/src/tests/__snapshots__/FlagPgIcon.html index b3467664..68b7be80 100644 --- a/src/tests/__snapshots__/FlagPgIcon.html +++ b/src/tests/__snapshots__/FlagPgIcon.html @@ -1 +1,15 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagPhIcon.html b/src/tests/__snapshots__/FlagPhIcon.html index fc3b3f36..731079be 100644 --- a/src/tests/__snapshots__/FlagPhIcon.html +++ b/src/tests/__snapshots__/FlagPhIcon.html @@ -1 +1,14 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagPkIcon.html b/src/tests/__snapshots__/FlagPkIcon.html index cc80fa88..e4f495c8 100644 --- a/src/tests/__snapshots__/FlagPkIcon.html +++ b/src/tests/__snapshots__/FlagPkIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagPlIcon.html b/src/tests/__snapshots__/FlagPlIcon.html index 37dde492..3c2e89d6 100644 --- a/src/tests/__snapshots__/FlagPlIcon.html +++ b/src/tests/__snapshots__/FlagPlIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagPnIcon.html b/src/tests/__snapshots__/FlagPnIcon.html index 0761cb71..439dae72 100644 --- a/src/tests/__snapshots__/FlagPnIcon.html +++ b/src/tests/__snapshots__/FlagPnIcon.html @@ -1 +1,16 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagPrIcon.html b/src/tests/__snapshots__/FlagPrIcon.html index c6249051..3ee84816 100644 --- a/src/tests/__snapshots__/FlagPrIcon.html +++ b/src/tests/__snapshots__/FlagPrIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagPtIcon.html b/src/tests/__snapshots__/FlagPtIcon.html index 28184321..40cc20d4 100644 --- a/src/tests/__snapshots__/FlagPtIcon.html +++ b/src/tests/__snapshots__/FlagPtIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagPwIcon.html b/src/tests/__snapshots__/FlagPwIcon.html index 319ce289..a52aa1a4 100644 --- a/src/tests/__snapshots__/FlagPwIcon.html +++ b/src/tests/__snapshots__/FlagPwIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagPyIcon.html b/src/tests/__snapshots__/FlagPyIcon.html index 1f2f46b4..ddad2614 100644 --- a/src/tests/__snapshots__/FlagPyIcon.html +++ b/src/tests/__snapshots__/FlagPyIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagQaIcon.html b/src/tests/__snapshots__/FlagQaIcon.html index e9748fad..76e19037 100644 --- a/src/tests/__snapshots__/FlagQaIcon.html +++ b/src/tests/__snapshots__/FlagQaIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagRoIcon.html b/src/tests/__snapshots__/FlagRoIcon.html index 751e4c7a..6ce48ca9 100644 --- a/src/tests/__snapshots__/FlagRoIcon.html +++ b/src/tests/__snapshots__/FlagRoIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagRsIcon.html b/src/tests/__snapshots__/FlagRsIcon.html index cd8109f4..747293d3 100644 --- a/src/tests/__snapshots__/FlagRsIcon.html +++ b/src/tests/__snapshots__/FlagRsIcon.html @@ -1 +1,14 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagRuIcon.html b/src/tests/__snapshots__/FlagRuIcon.html index 0729d0c5..a4c35d81 100644 --- a/src/tests/__snapshots__/FlagRuIcon.html +++ b/src/tests/__snapshots__/FlagRuIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagRwIcon.html b/src/tests/__snapshots__/FlagRwIcon.html index cf4db43e..f0e67b13 100644 --- a/src/tests/__snapshots__/FlagRwIcon.html +++ b/src/tests/__snapshots__/FlagRwIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagSaIcon.html b/src/tests/__snapshots__/FlagSaIcon.html index 95fb66e5..30bae93f 100644 --- a/src/tests/__snapshots__/FlagSaIcon.html +++ b/src/tests/__snapshots__/FlagSaIcon.html @@ -1 +1,14 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagSbIcon.html b/src/tests/__snapshots__/FlagSbIcon.html index fa4faca6..98e6a36d 100644 --- a/src/tests/__snapshots__/FlagSbIcon.html +++ b/src/tests/__snapshots__/FlagSbIcon.html @@ -1 +1,15 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagScIcon.html b/src/tests/__snapshots__/FlagScIcon.html index 7495fbb6..4e07d353 100644 --- a/src/tests/__snapshots__/FlagScIcon.html +++ b/src/tests/__snapshots__/FlagScIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagSdIcon.html b/src/tests/__snapshots__/FlagSdIcon.html index 20d8958c..d4f29ed2 100644 --- a/src/tests/__snapshots__/FlagSdIcon.html +++ b/src/tests/__snapshots__/FlagSdIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagSeIcon.html b/src/tests/__snapshots__/FlagSeIcon.html index 4d36a676..ac1ae61e 100644 --- a/src/tests/__snapshots__/FlagSeIcon.html +++ b/src/tests/__snapshots__/FlagSeIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagSgIcon.html b/src/tests/__snapshots__/FlagSgIcon.html index b3edfbee..1c9e0604 100644 --- a/src/tests/__snapshots__/FlagSgIcon.html +++ b/src/tests/__snapshots__/FlagSgIcon.html @@ -1 +1,15 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagSiIcon.html b/src/tests/__snapshots__/FlagSiIcon.html index a75b55c9..a64f4e77 100644 --- a/src/tests/__snapshots__/FlagSiIcon.html +++ b/src/tests/__snapshots__/FlagSiIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagSkIcon.html b/src/tests/__snapshots__/FlagSkIcon.html index 34e107e5..42a73da2 100644 --- a/src/tests/__snapshots__/FlagSkIcon.html +++ b/src/tests/__snapshots__/FlagSkIcon.html @@ -1 +1,14 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagSlIcon.html b/src/tests/__snapshots__/FlagSlIcon.html index 068d5b2b..45afbb60 100644 --- a/src/tests/__snapshots__/FlagSlIcon.html +++ b/src/tests/__snapshots__/FlagSlIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagSmIcon.html b/src/tests/__snapshots__/FlagSmIcon.html index ffdeb5b0..bcbb2fba 100644 --- a/src/tests/__snapshots__/FlagSmIcon.html +++ b/src/tests/__snapshots__/FlagSmIcon.html @@ -1 +1,14 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagSnIcon.html b/src/tests/__snapshots__/FlagSnIcon.html index 064cbe48..793b2d76 100644 --- a/src/tests/__snapshots__/FlagSnIcon.html +++ b/src/tests/__snapshots__/FlagSnIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagSoIcon.html b/src/tests/__snapshots__/FlagSoIcon.html index a370d297..cc356346 100644 --- a/src/tests/__snapshots__/FlagSoIcon.html +++ b/src/tests/__snapshots__/FlagSoIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagSrIcon.html b/src/tests/__snapshots__/FlagSrIcon.html index 511f6302..92637bca 100644 --- a/src/tests/__snapshots__/FlagSrIcon.html +++ b/src/tests/__snapshots__/FlagSrIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagSsIcon.html b/src/tests/__snapshots__/FlagSsIcon.html index 6b0d75ed..ca8e44d9 100644 --- a/src/tests/__snapshots__/FlagSsIcon.html +++ b/src/tests/__snapshots__/FlagSsIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagStIcon.html b/src/tests/__snapshots__/FlagStIcon.html index cac011b4..ff2d70ad 100644 --- a/src/tests/__snapshots__/FlagStIcon.html +++ b/src/tests/__snapshots__/FlagStIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagSvIcon.html b/src/tests/__snapshots__/FlagSvIcon.html index c0064a38..739addbb 100644 --- a/src/tests/__snapshots__/FlagSvIcon.html +++ b/src/tests/__snapshots__/FlagSvIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagSxIcon.html b/src/tests/__snapshots__/FlagSxIcon.html index 3c1023e9..86f2fc92 100644 --- a/src/tests/__snapshots__/FlagSxIcon.html +++ b/src/tests/__snapshots__/FlagSxIcon.html @@ -1 +1,15 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagSyIcon.html b/src/tests/__snapshots__/FlagSyIcon.html index 26249d64..4fde77cf 100644 --- a/src/tests/__snapshots__/FlagSyIcon.html +++ b/src/tests/__snapshots__/FlagSyIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagSzIcon.html b/src/tests/__snapshots__/FlagSzIcon.html index 5f41218d..4c6f4d60 100644 --- a/src/tests/__snapshots__/FlagSzIcon.html +++ b/src/tests/__snapshots__/FlagSzIcon.html @@ -1 +1,19 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagTcIcon.html b/src/tests/__snapshots__/FlagTcIcon.html index d07b2fe2..66085f2c 100644 --- a/src/tests/__snapshots__/FlagTcIcon.html +++ b/src/tests/__snapshots__/FlagTcIcon.html @@ -1 +1,17 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagTdIcon.html b/src/tests/__snapshots__/FlagTdIcon.html index 6202c790..a78e9806 100644 --- a/src/tests/__snapshots__/FlagTdIcon.html +++ b/src/tests/__snapshots__/FlagTdIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagTgIcon.html b/src/tests/__snapshots__/FlagTgIcon.html index f6abf79d..21b732de 100644 --- a/src/tests/__snapshots__/FlagTgIcon.html +++ b/src/tests/__snapshots__/FlagTgIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagThIcon.html b/src/tests/__snapshots__/FlagThIcon.html index 9e4ffc7e..d7a1aedd 100644 --- a/src/tests/__snapshots__/FlagThIcon.html +++ b/src/tests/__snapshots__/FlagThIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagTjIcon.html b/src/tests/__snapshots__/FlagTjIcon.html index bbdbae34..0e0d511b 100644 --- a/src/tests/__snapshots__/FlagTjIcon.html +++ b/src/tests/__snapshots__/FlagTjIcon.html @@ -1 +1,18 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagTkIcon.html b/src/tests/__snapshots__/FlagTkIcon.html index c49792e0..161394c8 100644 --- a/src/tests/__snapshots__/FlagTkIcon.html +++ b/src/tests/__snapshots__/FlagTkIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagTlIcon.html b/src/tests/__snapshots__/FlagTlIcon.html index c0a2f6bb..a03150ae 100644 --- a/src/tests/__snapshots__/FlagTlIcon.html +++ b/src/tests/__snapshots__/FlagTlIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagTmIcon.html b/src/tests/__snapshots__/FlagTmIcon.html index 5b06c41b..dd041096 100644 --- a/src/tests/__snapshots__/FlagTmIcon.html +++ b/src/tests/__snapshots__/FlagTmIcon.html @@ -1 +1,28 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagTnIcon.html b/src/tests/__snapshots__/FlagTnIcon.html index 7b3c103b..b7db3dc5 100644 --- a/src/tests/__snapshots__/FlagTnIcon.html +++ b/src/tests/__snapshots__/FlagTnIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagToIcon.html b/src/tests/__snapshots__/FlagToIcon.html index adab4fcc..a8afa100 100644 --- a/src/tests/__snapshots__/FlagToIcon.html +++ b/src/tests/__snapshots__/FlagToIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagTrIcon.html b/src/tests/__snapshots__/FlagTrIcon.html index 6c491671..1a6e0cf0 100644 --- a/src/tests/__snapshots__/FlagTrIcon.html +++ b/src/tests/__snapshots__/FlagTrIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagTtIcon.html b/src/tests/__snapshots__/FlagTtIcon.html index 98b752f4..3a71dcb3 100644 --- a/src/tests/__snapshots__/FlagTtIcon.html +++ b/src/tests/__snapshots__/FlagTtIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagTvIcon.html b/src/tests/__snapshots__/FlagTvIcon.html index 5b2053c7..d8c4b6aa 100644 --- a/src/tests/__snapshots__/FlagTvIcon.html +++ b/src/tests/__snapshots__/FlagTvIcon.html @@ -1 +1,23 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagTwIcon.html b/src/tests/__snapshots__/FlagTwIcon.html index 4b85570c..e3a4396c 100644 --- a/src/tests/__snapshots__/FlagTwIcon.html +++ b/src/tests/__snapshots__/FlagTwIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagTzIcon.html b/src/tests/__snapshots__/FlagTzIcon.html index 6d307128..eea517ab 100644 --- a/src/tests/__snapshots__/FlagTzIcon.html +++ b/src/tests/__snapshots__/FlagTzIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagUaIcon.html b/src/tests/__snapshots__/FlagUaIcon.html index 6da9e99c..ed10c73e 100644 --- a/src/tests/__snapshots__/FlagUaIcon.html +++ b/src/tests/__snapshots__/FlagUaIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagUgIcon.html b/src/tests/__snapshots__/FlagUgIcon.html index 49b3bea0..f1befb08 100644 --- a/src/tests/__snapshots__/FlagUgIcon.html +++ b/src/tests/__snapshots__/FlagUgIcon.html @@ -1 +1,14 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagUnIcon.html b/src/tests/__snapshots__/FlagUnIcon.html index d51606d0..6299f910 100644 --- a/src/tests/__snapshots__/FlagUnIcon.html +++ b/src/tests/__snapshots__/FlagUnIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagUsIcon.html b/src/tests/__snapshots__/FlagUsIcon.html index af25eaba..e32fde19 100644 --- a/src/tests/__snapshots__/FlagUsIcon.html +++ b/src/tests/__snapshots__/FlagUsIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagUyIcon.html b/src/tests/__snapshots__/FlagUyIcon.html index 39d98de1..27af09d5 100644 --- a/src/tests/__snapshots__/FlagUyIcon.html +++ b/src/tests/__snapshots__/FlagUyIcon.html @@ -1 +1,14 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagUzIcon.html b/src/tests/__snapshots__/FlagUzIcon.html index 1989be37..15dc98fe 100644 --- a/src/tests/__snapshots__/FlagUzIcon.html +++ b/src/tests/__snapshots__/FlagUzIcon.html @@ -1 +1,25 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagVaIcon.html b/src/tests/__snapshots__/FlagVaIcon.html index 8c9115f3..dbf3a1a7 100644 --- a/src/tests/__snapshots__/FlagVaIcon.html +++ b/src/tests/__snapshots__/FlagVaIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagVcIcon.html b/src/tests/__snapshots__/FlagVcIcon.html index 93045684..1c9003f2 100644 --- a/src/tests/__snapshots__/FlagVcIcon.html +++ b/src/tests/__snapshots__/FlagVcIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagVeIcon.html b/src/tests/__snapshots__/FlagVeIcon.html index 22cfc03a..015c7102 100644 --- a/src/tests/__snapshots__/FlagVeIcon.html +++ b/src/tests/__snapshots__/FlagVeIcon.html @@ -1 +1,18 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagVgIcon.html b/src/tests/__snapshots__/FlagVgIcon.html index 8b11d289..ca69cec2 100644 --- a/src/tests/__snapshots__/FlagVgIcon.html +++ b/src/tests/__snapshots__/FlagVgIcon.html @@ -1 +1,22 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagViIcon.html b/src/tests/__snapshots__/FlagViIcon.html index d462620a..aeb6c02b 100644 --- a/src/tests/__snapshots__/FlagViIcon.html +++ b/src/tests/__snapshots__/FlagViIcon.html @@ -1 +1,16 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagVnIcon.html b/src/tests/__snapshots__/FlagVnIcon.html index 1a86c8c6..a46012cc 100644 --- a/src/tests/__snapshots__/FlagVnIcon.html +++ b/src/tests/__snapshots__/FlagVnIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagVuIcon.html b/src/tests/__snapshots__/FlagVuIcon.html index bfb1d2f0..16a0e174 100644 --- a/src/tests/__snapshots__/FlagVuIcon.html +++ b/src/tests/__snapshots__/FlagVuIcon.html @@ -1 +1,30 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagWsIcon.html b/src/tests/__snapshots__/FlagWsIcon.html index b41e7748..5e08dcb4 100644 --- a/src/tests/__snapshots__/FlagWsIcon.html +++ b/src/tests/__snapshots__/FlagWsIcon.html @@ -1 +1,14 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagYeIcon.html b/src/tests/__snapshots__/FlagYeIcon.html index 197fcb65..b4331f01 100644 --- a/src/tests/__snapshots__/FlagYeIcon.html +++ b/src/tests/__snapshots__/FlagYeIcon.html @@ -1 +1,10 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagZaIcon.html b/src/tests/__snapshots__/FlagZaIcon.html index d08643e0..4789a725 100644 --- a/src/tests/__snapshots__/FlagZaIcon.html +++ b/src/tests/__snapshots__/FlagZaIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagZmIcon.html b/src/tests/__snapshots__/FlagZmIcon.html index 9c9e543d..2d96cccf 100644 --- a/src/tests/__snapshots__/FlagZmIcon.html +++ b/src/tests/__snapshots__/FlagZmIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/FlagZwIcon.html b/src/tests/__snapshots__/FlagZwIcon.html index 6ddf1db9..6500690b 100644 --- a/src/tests/__snapshots__/FlagZwIcon.html +++ b/src/tests/__snapshots__/FlagZwIcon.html @@ -1 +1,18 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/ForwardIcon.html b/src/tests/__snapshots__/ForwardIcon.html index f0910a6e..b8704771 100644 --- a/src/tests/__snapshots__/ForwardIcon.html +++ b/src/tests/__snapshots__/ForwardIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/GatewayIcon.html b/src/tests/__snapshots__/GatewayIcon.html index b5b8c97e..41bb465b 100644 --- a/src/tests/__snapshots__/GatewayIcon.html +++ b/src/tests/__snapshots__/GatewayIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/GoogleCloudIcon.html b/src/tests/__snapshots__/GoogleCloudIcon.html index 9a7bd174..ed2a6892 100644 --- a/src/tests/__snapshots__/GoogleCloudIcon.html +++ b/src/tests/__snapshots__/GoogleCloudIcon.html @@ -1 +1,4 @@ -My custom title \ No newline at end of file +My custom title + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/GoogleIcon.html b/src/tests/__snapshots__/GoogleIcon.html index ff9bd06e..88417a4a 100644 --- a/src/tests/__snapshots__/GoogleIcon.html +++ b/src/tests/__snapshots__/GoogleIcon.html @@ -1 +1,4 @@ -My custom title \ No newline at end of file +My custom title + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/GraduationIcon.html b/src/tests/__snapshots__/GraduationIcon.html index 793f1ce0..caf7ad06 100644 --- a/src/tests/__snapshots__/GraduationIcon.html +++ b/src/tests/__snapshots__/GraduationIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/GridIcon.html b/src/tests/__snapshots__/GridIcon.html index bc5780bf..85829355 100644 --- a/src/tests/__snapshots__/GridIcon.html +++ b/src/tests/__snapshots__/GridIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/HashicorpIcon.html b/src/tests/__snapshots__/HashicorpIcon.html index afc948b7..6b67acb5 100644 --- a/src/tests/__snapshots__/HashicorpIcon.html +++ b/src/tests/__snapshots__/HashicorpIcon.html @@ -1 +1,2 @@ -My custom title \ No newline at end of file +My custom title + \ No newline at end of file diff --git a/src/tests/__snapshots__/HelpIcon.html b/src/tests/__snapshots__/HelpIcon.html index 0d832e6b..1294e2da 100644 --- a/src/tests/__snapshots__/HelpIcon.html +++ b/src/tests/__snapshots__/HelpIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/HistoryIcon.html b/src/tests/__snapshots__/HistoryIcon.html index 48a7837e..b321671c 100644 --- a/src/tests/__snapshots__/HistoryIcon.html +++ b/src/tests/__snapshots__/HistoryIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/HtmlIcon.html b/src/tests/__snapshots__/HtmlIcon.html index 5ccaac37..2ff4bdd9 100644 --- a/src/tests/__snapshots__/HtmlIcon.html +++ b/src/tests/__snapshots__/HtmlIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ImageIcon.html b/src/tests/__snapshots__/ImageIcon.html index 090ea5b6..30bae50b 100644 --- a/src/tests/__snapshots__/ImageIcon.html +++ b/src/tests/__snapshots__/ImageIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ImmunityIcon.html b/src/tests/__snapshots__/ImmunityIcon.html index 473f0143..92151b34 100644 --- a/src/tests/__snapshots__/ImmunityIcon.html +++ b/src/tests/__snapshots__/ImmunityIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/InboxIcon.html b/src/tests/__snapshots__/InboxIcon.html index a1d324d3..5993a43a 100644 --- a/src/tests/__snapshots__/InboxIcon.html +++ b/src/tests/__snapshots__/InboxIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/InboxNotificationIcon.html b/src/tests/__snapshots__/InboxNotificationIcon.html index c2845f6f..8fc3849e 100644 --- a/src/tests/__snapshots__/InboxNotificationIcon.html +++ b/src/tests/__snapshots__/InboxNotificationIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/IncreaseIcon.html b/src/tests/__snapshots__/IncreaseIcon.html index 8ca8e68f..b4e5e70a 100644 --- a/src/tests/__snapshots__/IncreaseIcon.html +++ b/src/tests/__snapshots__/IncreaseIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/IndeterminateSmallIcon.html b/src/tests/__snapshots__/IndeterminateSmallIcon.html index 5fc128a2..f662e9cc 100644 --- a/src/tests/__snapshots__/IndeterminateSmallIcon.html +++ b/src/tests/__snapshots__/IndeterminateSmallIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/InfoIcon.html b/src/tests/__snapshots__/InfoIcon.html index 93c547c8..e229c37e 100644 --- a/src/tests/__snapshots__/InfoIcon.html +++ b/src/tests/__snapshots__/InfoIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/InsightsIcon.html b/src/tests/__snapshots__/InsightsIcon.html index 4ef8012b..bd5039d1 100644 --- a/src/tests/__snapshots__/InsightsIcon.html +++ b/src/tests/__snapshots__/InsightsIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/InsomniaIcon.html b/src/tests/__snapshots__/InsomniaIcon.html index 4c2ff909..71846f29 100644 --- a/src/tests/__snapshots__/InsomniaIcon.html +++ b/src/tests/__snapshots__/InsomniaIcon.html @@ -1 +1,14 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/ItalicIcon.html b/src/tests/__snapshots__/ItalicIcon.html index 738fc14d..4554453c 100644 --- a/src/tests/__snapshots__/ItalicIcon.html +++ b/src/tests/__snapshots__/ItalicIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/KeyboardReturnIcon.html b/src/tests/__snapshots__/KeyboardReturnIcon.html index 30a77372..2dfbebb0 100644 --- a/src/tests/__snapshots__/KeyboardReturnIcon.html +++ b/src/tests/__snapshots__/KeyboardReturnIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/KongGradientIcon.html b/src/tests/__snapshots__/KongGradientIcon.html index b8c81a9b..57969468 100644 --- a/src/tests/__snapshots__/KongGradientIcon.html +++ b/src/tests/__snapshots__/KongGradientIcon.html @@ -1 +1,22 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/KongIcon.html b/src/tests/__snapshots__/KongIcon.html index 9e96ada1..18e8b25f 100644 --- a/src/tests/__snapshots__/KongIcon.html +++ b/src/tests/__snapshots__/KongIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/LanguageBashIcon.html b/src/tests/__snapshots__/LanguageBashIcon.html index 08f12046..836559c2 100644 --- a/src/tests/__snapshots__/LanguageBashIcon.html +++ b/src/tests/__snapshots__/LanguageBashIcon.html @@ -1 +1,2 @@ -My custom title \ No newline at end of file +My custom title + \ No newline at end of file diff --git a/src/tests/__snapshots__/LanguageCIcon.html b/src/tests/__snapshots__/LanguageCIcon.html index 68a30892..ed73773a 100644 --- a/src/tests/__snapshots__/LanguageCIcon.html +++ b/src/tests/__snapshots__/LanguageCIcon.html @@ -1 +1,3 @@ -My custom title \ No newline at end of file +My custom title + + \ No newline at end of file diff --git a/src/tests/__snapshots__/LanguageCPlusPlusIcon.html b/src/tests/__snapshots__/LanguageCPlusPlusIcon.html index d5993504..49cae90c 100644 --- a/src/tests/__snapshots__/LanguageCPlusPlusIcon.html +++ b/src/tests/__snapshots__/LanguageCPlusPlusIcon.html @@ -1 +1,11 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/LanguageCSharpIcon.html b/src/tests/__snapshots__/LanguageCSharpIcon.html index 9033e864..28ab871e 100644 --- a/src/tests/__snapshots__/LanguageCSharpIcon.html +++ b/src/tests/__snapshots__/LanguageCSharpIcon.html @@ -1 +1,3 @@ -My custom title \ No newline at end of file +My custom title + + \ No newline at end of file diff --git a/src/tests/__snapshots__/LanguageGoIcon.html b/src/tests/__snapshots__/LanguageGoIcon.html index 69eb5424..24fa24ae 100644 --- a/src/tests/__snapshots__/LanguageGoIcon.html +++ b/src/tests/__snapshots__/LanguageGoIcon.html @@ -1 +1,198 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/LanguageJavaIcon.html b/src/tests/__snapshots__/LanguageJavaIcon.html index 789dbceb..47399de4 100644 --- a/src/tests/__snapshots__/LanguageJavaIcon.html +++ b/src/tests/__snapshots__/LanguageJavaIcon.html @@ -1 +1,5 @@ -My custom title \ No newline at end of file +My custom title + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/LanguageJavascriptIcon.html b/src/tests/__snapshots__/LanguageJavascriptIcon.html index 1166b835..46452132 100644 --- a/src/tests/__snapshots__/LanguageJavascriptIcon.html +++ b/src/tests/__snapshots__/LanguageJavascriptIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/LanguageJsonIcon.html b/src/tests/__snapshots__/LanguageJsonIcon.html index 2d86b180..a8337f14 100644 --- a/src/tests/__snapshots__/LanguageJsonIcon.html +++ b/src/tests/__snapshots__/LanguageJsonIcon.html @@ -1 +1,17 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/LanguageNodejsIcon.html b/src/tests/__snapshots__/LanguageNodejsIcon.html index 5dfe4b4d..79e86861 100644 --- a/src/tests/__snapshots__/LanguageNodejsIcon.html +++ b/src/tests/__snapshots__/LanguageNodejsIcon.html @@ -1 +1,29 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/LanguagePhpIcon.html b/src/tests/__snapshots__/LanguagePhpIcon.html index 9c24789a..c7e024df 100644 --- a/src/tests/__snapshots__/LanguagePhpIcon.html +++ b/src/tests/__snapshots__/LanguagePhpIcon.html @@ -1 +1,16 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/LanguagePythonIcon.html b/src/tests/__snapshots__/LanguagePythonIcon.html index fe6935d0..214042c4 100644 --- a/src/tests/__snapshots__/LanguagePythonIcon.html +++ b/src/tests/__snapshots__/LanguagePythonIcon.html @@ -1 +1,17 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/LanguageRIcon.html b/src/tests/__snapshots__/LanguageRIcon.html index 001c43d2..50bd7822 100644 --- a/src/tests/__snapshots__/LanguageRIcon.html +++ b/src/tests/__snapshots__/LanguageRIcon.html @@ -1 +1,12 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/LanguageRubyIcon.html b/src/tests/__snapshots__/LanguageRubyIcon.html index f673518f..82f75a61 100644 --- a/src/tests/__snapshots__/LanguageRubyIcon.html +++ b/src/tests/__snapshots__/LanguageRubyIcon.html @@ -1 +1,123 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/LanguageShellIcon.html b/src/tests/__snapshots__/LanguageShellIcon.html index 3a083697..439bad67 100644 --- a/src/tests/__snapshots__/LanguageShellIcon.html +++ b/src/tests/__snapshots__/LanguageShellIcon.html @@ -1 +1,17 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/LanguageSwiftIcon.html b/src/tests/__snapshots__/LanguageSwiftIcon.html index b05242ba..074d8bbc 100644 --- a/src/tests/__snapshots__/LanguageSwiftIcon.html +++ b/src/tests/__snapshots__/LanguageSwiftIcon.html @@ -1 +1,9 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/LinkIcon.html b/src/tests/__snapshots__/LinkIcon.html index 64989dbb..7f6aac06 100644 --- a/src/tests/__snapshots__/LinkIcon.html +++ b/src/tests/__snapshots__/LinkIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/LinkedServicesIcon.html b/src/tests/__snapshots__/LinkedServicesIcon.html index 83730ebc..bc172284 100644 --- a/src/tests/__snapshots__/LinkedServicesIcon.html +++ b/src/tests/__snapshots__/LinkedServicesIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/LinuxIcon.html b/src/tests/__snapshots__/LinuxIcon.html index 85d97b79..3f67e0ee 100644 --- a/src/tests/__snapshots__/LinuxIcon.html +++ b/src/tests/__snapshots__/LinuxIcon.html @@ -1 +1,13 @@ -My custom title \ No newline at end of file +My custom title + + + + + + + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/ListIcon.html b/src/tests/__snapshots__/ListIcon.html index 4ce3f69d..db9cb493 100644 --- a/src/tests/__snapshots__/ListIcon.html +++ b/src/tests/__snapshots__/ListIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ListOrderedIcon.html b/src/tests/__snapshots__/ListOrderedIcon.html index bbe5c5b3..9a752ec6 100644 --- a/src/tests/__snapshots__/ListOrderedIcon.html +++ b/src/tests/__snapshots__/ListOrderedIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ListUnorderedIcon.html b/src/tests/__snapshots__/ListUnorderedIcon.html index c81a739c..afdc845e 100644 --- a/src/tests/__snapshots__/ListUnorderedIcon.html +++ b/src/tests/__snapshots__/ListUnorderedIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/LockIcon.html b/src/tests/__snapshots__/LockIcon.html index 7a919211..c33a212d 100644 --- a/src/tests/__snapshots__/LockIcon.html +++ b/src/tests/__snapshots__/LockIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/MarkIcon.html b/src/tests/__snapshots__/MarkIcon.html index 25df2fcb..0f978973 100644 --- a/src/tests/__snapshots__/MarkIcon.html +++ b/src/tests/__snapshots__/MarkIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/MarkdownIcon.html b/src/tests/__snapshots__/MarkdownIcon.html index 68937a3a..16bf9075 100644 --- a/src/tests/__snapshots__/MarkdownIcon.html +++ b/src/tests/__snapshots__/MarkdownIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/MenuIcon.html b/src/tests/__snapshots__/MenuIcon.html index e034773e..e032621d 100644 --- a/src/tests/__snapshots__/MenuIcon.html +++ b/src/tests/__snapshots__/MenuIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/MeshIcon.html b/src/tests/__snapshots__/MeshIcon.html index 6ce0a347..023ab72d 100644 --- a/src/tests/__snapshots__/MeshIcon.html +++ b/src/tests/__snapshots__/MeshIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/MoreHorizontalIcon.html b/src/tests/__snapshots__/MoreHorizontalIcon.html index 5e13d1ee..4242a6d5 100644 --- a/src/tests/__snapshots__/MoreHorizontalIcon.html +++ b/src/tests/__snapshots__/MoreHorizontalIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/MoreIcon.html b/src/tests/__snapshots__/MoreIcon.html index 013dfe16..3f793277 100644 --- a/src/tests/__snapshots__/MoreIcon.html +++ b/src/tests/__snapshots__/MoreIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/NetworkIcon.html b/src/tests/__snapshots__/NetworkIcon.html index 2bef4302..6587694f 100644 --- a/src/tests/__snapshots__/NetworkIcon.html +++ b/src/tests/__snapshots__/NetworkIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/NotificationIcon.html b/src/tests/__snapshots__/NotificationIcon.html index 810a0790..6f8c77ab 100644 --- a/src/tests/__snapshots__/NotificationIcon.html +++ b/src/tests/__snapshots__/NotificationIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/OrganizationIcon.html b/src/tests/__snapshots__/OrganizationIcon.html index c5935be2..98726282 100644 --- a/src/tests/__snapshots__/OrganizationIcon.html +++ b/src/tests/__snapshots__/OrganizationIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/OverviewIcon.html b/src/tests/__snapshots__/OverviewIcon.html index 7f90f21f..d43bcd15 100644 --- a/src/tests/__snapshots__/OverviewIcon.html +++ b/src/tests/__snapshots__/OverviewIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/PeopleIcon.html b/src/tests/__snapshots__/PeopleIcon.html index dac45363..8e7c3c55 100644 --- a/src/tests/__snapshots__/PeopleIcon.html +++ b/src/tests/__snapshots__/PeopleIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/PlugIcon.html b/src/tests/__snapshots__/PlugIcon.html index a7d90691..22c711e9 100644 --- a/src/tests/__snapshots__/PlugIcon.html +++ b/src/tests/__snapshots__/PlugIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/PortalIcon.html b/src/tests/__snapshots__/PortalIcon.html index 467fd223..8f26f864 100644 --- a/src/tests/__snapshots__/PortalIcon.html +++ b/src/tests/__snapshots__/PortalIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/PresentationIcon.html b/src/tests/__snapshots__/PresentationIcon.html index 41fd2f6f..836ac7b9 100644 --- a/src/tests/__snapshots__/PresentationIcon.html +++ b/src/tests/__snapshots__/PresentationIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ProfileIcon.html b/src/tests/__snapshots__/ProfileIcon.html index 784e0b29..d28069e8 100644 --- a/src/tests/__snapshots__/ProfileIcon.html +++ b/src/tests/__snapshots__/ProfileIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ProfileTeamIcon.html b/src/tests/__snapshots__/ProfileTeamIcon.html index 37b2b48b..4532180d 100644 --- a/src/tests/__snapshots__/ProfileTeamIcon.html +++ b/src/tests/__snapshots__/ProfileTeamIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ProgressIcon.html b/src/tests/__snapshots__/ProgressIcon.html index 881e731e..fd12a52b 100644 --- a/src/tests/__snapshots__/ProgressIcon.html +++ b/src/tests/__snapshots__/ProgressIcon.html @@ -1 +1,2 @@ -My custom title \ No newline at end of file +My custom title + \ No newline at end of file diff --git a/src/tests/__snapshots__/RedoIcon.html b/src/tests/__snapshots__/RedoIcon.html index c7b96a0c..061915c7 100644 --- a/src/tests/__snapshots__/RedoIcon.html +++ b/src/tests/__snapshots__/RedoIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/RefreshIcon.html b/src/tests/__snapshots__/RefreshIcon.html index 0b95b49d..2faefeba 100644 --- a/src/tests/__snapshots__/RefreshIcon.html +++ b/src/tests/__snapshots__/RefreshIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/RegexIcon.html b/src/tests/__snapshots__/RegexIcon.html index f73a655e..0322075a 100644 --- a/src/tests/__snapshots__/RegexIcon.html +++ b/src/tests/__snapshots__/RegexIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/RemoveIcon.html b/src/tests/__snapshots__/RemoveIcon.html index f6e872cd..8e99d65d 100644 --- a/src/tests/__snapshots__/RemoveIcon.html +++ b/src/tests/__snapshots__/RemoveIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ResponseIcon.html b/src/tests/__snapshots__/ResponseIcon.html index 69ac61b7..07ec36c6 100644 --- a/src/tests/__snapshots__/ResponseIcon.html +++ b/src/tests/__snapshots__/ResponseIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/RocketIcon.html b/src/tests/__snapshots__/RocketIcon.html index 6ad3bbc6..342e1328 100644 --- a/src/tests/__snapshots__/RocketIcon.html +++ b/src/tests/__snapshots__/RocketIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/RuntimeCompositeIcon.html b/src/tests/__snapshots__/RuntimeCompositeIcon.html index e9a3894e..b89367fb 100644 --- a/src/tests/__snapshots__/RuntimeCompositeIcon.html +++ b/src/tests/__snapshots__/RuntimeCompositeIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/RuntimeDedicatedCloudIcon.html b/src/tests/__snapshots__/RuntimeDedicatedCloudIcon.html index 014cbe05..f89c1bc6 100644 --- a/src/tests/__snapshots__/RuntimeDedicatedCloudIcon.html +++ b/src/tests/__snapshots__/RuntimeDedicatedCloudIcon.html @@ -1 +1,7 @@ -My custom title \ No newline at end of file +My custom title + + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/RuntimeHybridIcon.html b/src/tests/__snapshots__/RuntimeHybridIcon.html index 87b254fb..78ddc753 100644 --- a/src/tests/__snapshots__/RuntimeHybridIcon.html +++ b/src/tests/__snapshots__/RuntimeHybridIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/RuntimeKicIcon.html b/src/tests/__snapshots__/RuntimeKicIcon.html index 5309523f..0ce40e39 100644 --- a/src/tests/__snapshots__/RuntimeKicIcon.html +++ b/src/tests/__snapshots__/RuntimeKicIcon.html @@ -1 +1,3 @@ -My custom title \ No newline at end of file +My custom title + + \ No newline at end of file diff --git a/src/tests/__snapshots__/RuntimeServerlessIcon.html b/src/tests/__snapshots__/RuntimeServerlessIcon.html index edfe2324..dd24bb6c 100644 --- a/src/tests/__snapshots__/RuntimeServerlessIcon.html +++ b/src/tests/__snapshots__/RuntimeServerlessIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/RuntimesIcon.html b/src/tests/__snapshots__/RuntimesIcon.html index ef98e502..d665094b 100644 --- a/src/tests/__snapshots__/RuntimesIcon.html +++ b/src/tests/__snapshots__/RuntimesIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/SearchIcon.html b/src/tests/__snapshots__/SearchIcon.html index fab17eea..9b80480e 100644 --- a/src/tests/__snapshots__/SearchIcon.html +++ b/src/tests/__snapshots__/SearchIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/SecurityIcon.html b/src/tests/__snapshots__/SecurityIcon.html index 5f68db5f..74a0ec86 100644 --- a/src/tests/__snapshots__/SecurityIcon.html +++ b/src/tests/__snapshots__/SecurityIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ServiceDocumentIcon.html b/src/tests/__snapshots__/ServiceDocumentIcon.html index b5fcb80e..a4d5d74c 100644 --- a/src/tests/__snapshots__/ServiceDocumentIcon.html +++ b/src/tests/__snapshots__/ServiceDocumentIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ServiceHubIcon.html b/src/tests/__snapshots__/ServiceHubIcon.html index 1cef0efb..c75cb519 100644 --- a/src/tests/__snapshots__/ServiceHubIcon.html +++ b/src/tests/__snapshots__/ServiceHubIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ServicesIcon.html b/src/tests/__snapshots__/ServicesIcon.html index a938b355..970f545c 100644 --- a/src/tests/__snapshots__/ServicesIcon.html +++ b/src/tests/__snapshots__/ServicesIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/SharedIcon.html b/src/tests/__snapshots__/SharedIcon.html index 2ebfe91a..42d3c87c 100644 --- a/src/tests/__snapshots__/SharedIcon.html +++ b/src/tests/__snapshots__/SharedIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/StackIcon.html b/src/tests/__snapshots__/StackIcon.html index 18711f36..7daba16c 100644 --- a/src/tests/__snapshots__/StackIcon.html +++ b/src/tests/__snapshots__/StackIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/StrikethroughIcon.html b/src/tests/__snapshots__/StrikethroughIcon.html index 34f91eae..376cf653 100644 --- a/src/tests/__snapshots__/StrikethroughIcon.html +++ b/src/tests/__snapshots__/StrikethroughIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/SubscriptIcon.html b/src/tests/__snapshots__/SubscriptIcon.html index f14233e3..970a2f49 100644 --- a/src/tests/__snapshots__/SubscriptIcon.html +++ b/src/tests/__snapshots__/SubscriptIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/SuperscriptIcon.html b/src/tests/__snapshots__/SuperscriptIcon.html index efd7f610..d19ab454 100644 --- a/src/tests/__snapshots__/SuperscriptIcon.html +++ b/src/tests/__snapshots__/SuperscriptIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/SupportIcon.html b/src/tests/__snapshots__/SupportIcon.html index 46aff436..2b1d4d7f 100644 --- a/src/tests/__snapshots__/SupportIcon.html +++ b/src/tests/__snapshots__/SupportIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/TableColumnsIcon.html b/src/tests/__snapshots__/TableColumnsIcon.html index 73979a60..ac277f42 100644 --- a/src/tests/__snapshots__/TableColumnsIcon.html +++ b/src/tests/__snapshots__/TableColumnsIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/TableIcon.html b/src/tests/__snapshots__/TableIcon.html index 4a87a8bd..e160f835 100644 --- a/src/tests/__snapshots__/TableIcon.html +++ b/src/tests/__snapshots__/TableIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/TableRowsIcon.html b/src/tests/__snapshots__/TableRowsIcon.html index cd2590f1..d9a7cc72 100644 --- a/src/tests/__snapshots__/TableRowsIcon.html +++ b/src/tests/__snapshots__/TableRowsIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/TasklistIcon.html b/src/tests/__snapshots__/TasklistIcon.html index 4005812c..8884a6c0 100644 --- a/src/tests/__snapshots__/TasklistIcon.html +++ b/src/tests/__snapshots__/TasklistIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/TeamIcon.html b/src/tests/__snapshots__/TeamIcon.html index 9688cb4e..6bfdd5ea 100644 --- a/src/tests/__snapshots__/TeamIcon.html +++ b/src/tests/__snapshots__/TeamIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/TeammateIcon.html b/src/tests/__snapshots__/TeammateIcon.html index 5e10daa8..adaf321f 100644 --- a/src/tests/__snapshots__/TeammateIcon.html +++ b/src/tests/__snapshots__/TeammateIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ThumbDownIcon.html b/src/tests/__snapshots__/ThumbDownIcon.html index 5a2e7bd5..8a2ad843 100644 --- a/src/tests/__snapshots__/ThumbDownIcon.html +++ b/src/tests/__snapshots__/ThumbDownIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ThumbUpIcon.html b/src/tests/__snapshots__/ThumbUpIcon.html index 8bc88f51..2ef18542 100644 --- a/src/tests/__snapshots__/ThumbUpIcon.html +++ b/src/tests/__snapshots__/ThumbUpIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/TrashIcon.html b/src/tests/__snapshots__/TrashIcon.html index 535e7ca7..9ffcf202 100644 --- a/src/tests/__snapshots__/TrashIcon.html +++ b/src/tests/__snapshots__/TrashIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/TrendDownIcon.html b/src/tests/__snapshots__/TrendDownIcon.html index af00f52f..f16dd4fd 100644 --- a/src/tests/__snapshots__/TrendDownIcon.html +++ b/src/tests/__snapshots__/TrendDownIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/TrendUpIcon.html b/src/tests/__snapshots__/TrendUpIcon.html index 46c048bc..de821608 100644 --- a/src/tests/__snapshots__/TrendUpIcon.html +++ b/src/tests/__snapshots__/TrendUpIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/UnderlineIcon.html b/src/tests/__snapshots__/UnderlineIcon.html index b7be1c19..577a5af6 100644 --- a/src/tests/__snapshots__/UnderlineIcon.html +++ b/src/tests/__snapshots__/UnderlineIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/UnfoldMoreIcon.html b/src/tests/__snapshots__/UnfoldMoreIcon.html index 131e3f3f..cae028b6 100644 --- a/src/tests/__snapshots__/UnfoldMoreIcon.html +++ b/src/tests/__snapshots__/UnfoldMoreIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/UploadIcon.html b/src/tests/__snapshots__/UploadIcon.html index 807a2b4b..8014fcbe 100644 --- a/src/tests/__snapshots__/UploadIcon.html +++ b/src/tests/__snapshots__/UploadIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/VisibilityIcon.html b/src/tests/__snapshots__/VisibilityIcon.html index 24535fe6..19d19b37 100644 --- a/src/tests/__snapshots__/VisibilityIcon.html +++ b/src/tests/__snapshots__/VisibilityIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/VitalsIcon.html b/src/tests/__snapshots__/VitalsIcon.html index 1bbb329e..d828c8b8 100644 --- a/src/tests/__snapshots__/VitalsIcon.html +++ b/src/tests/__snapshots__/VitalsIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/WarningIcon.html b/src/tests/__snapshots__/WarningIcon.html index 1fc56638..b2be9727 100644 --- a/src/tests/__snapshots__/WarningIcon.html +++ b/src/tests/__snapshots__/WarningIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/WarningOutlineIcon.html b/src/tests/__snapshots__/WarningOutlineIcon.html index 5b3b5cea..05df8776 100644 --- a/src/tests/__snapshots__/WarningOutlineIcon.html +++ b/src/tests/__snapshots__/WarningOutlineIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/WidgetsIcon.html b/src/tests/__snapshots__/WidgetsIcon.html index 0fdd09ca..70a79bc4 100644 --- a/src/tests/__snapshots__/WidgetsIcon.html +++ b/src/tests/__snapshots__/WidgetsIcon.html @@ -1 +1,6 @@ -My custom title \ No newline at end of file +My custom title + + + + + \ No newline at end of file diff --git a/src/tests/__snapshots__/WindowsIcon.html b/src/tests/__snapshots__/WindowsIcon.html index 5ceb5a74..0cb85fac 100644 --- a/src/tests/__snapshots__/WindowsIcon.html +++ b/src/tests/__snapshots__/WindowsIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/WorkspacesIcon.html b/src/tests/__snapshots__/WorkspacesIcon.html index 1de58b9e..6a86c874 100644 --- a/src/tests/__snapshots__/WorkspacesIcon.html +++ b/src/tests/__snapshots__/WorkspacesIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/WorldIcon.html b/src/tests/__snapshots__/WorldIcon.html index 96ee086e..6ac7e6bd 100644 --- a/src/tests/__snapshots__/WorldIcon.html +++ b/src/tests/__snapshots__/WorldIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/WorldPrivateIcon.html b/src/tests/__snapshots__/WorldPrivateIcon.html index 2a91f71b..8d5bd5be 100644 --- a/src/tests/__snapshots__/WorldPrivateIcon.html +++ b/src/tests/__snapshots__/WorldPrivateIcon.html @@ -1 +1 @@ -My custom title \ No newline at end of file +My custom title \ No newline at end of file diff --git a/src/tests/generated-component.spec.ts b/src/tests/generated-component.spec.ts index 2af65c49..7e23cc67 100644 --- a/src/tests/generated-component.spec.ts +++ b/src/tests/generated-component.spec.ts @@ -7,6 +7,7 @@ import { KUI_COLOR_TEXT_PRIMARY } from '@kong/design-tokens' for (const [componentName, IconComponent] of Object.entries(importedComponents)) { describe(`${componentName}.vue`, () => { it('has proper default structure', () => { + // @ts-ignore: dynamic component const wrapper = mount(IconComponent) expect(wrapper.exists()).toBe(true) @@ -21,9 +22,11 @@ for (const [componentName, IconComponent] of Object.entries(importedComponents)) expect(svg.isVisible()).toBe(true) }) - it('matches snapshot', () => { + it('matches snapshot', async () => { + // @ts-ignore: dynamic component interface const wrapper = mount(IconComponent, { props: { + staticIds: true, // Prevents random IDs from being generated for consistent snapshot testing title: 'My custom title', color: KUI_COLOR_TEXT_PRIMARY, display: 'inline-flex', @@ -33,7 +36,7 @@ for (const [componentName, IconComponent] of Object.entries(importedComponents)) }, }) - expect(wrapper.html()).toMatchFileSnapshot(`./__snapshots__/${componentName}.html`) + await expect(wrapper.html()).toMatchFileSnapshot(`./__snapshots__/${componentName}.html`) }) describe('wrapper element', () => {