diff --git a/.github/actions/install-dependencies/action.yml b/.github/actions/install-dependencies/action.yml index 5859e91df1d..e082bcab372 100644 --- a/.github/actions/install-dependencies/action.yml +++ b/.github/actions/install-dependencies/action.yml @@ -18,8 +18,14 @@ runs: key: ${{ runner.os }}-blade-${{ hashFiles('**/yarn.lock') }} # cache miss - install packages with `yarn --frozen-lockfile` - # cache hit - download packages from the cache + # cache hit - download packages from the cache and explicitly run postinstall script - name: install packages if cache miss run: yarn --frozen-lockfile shell: bash if: steps.cache.outputs.cache-hit != 'true' + + - name: Run postinstall script + run: yarn postinstall + working-directory: packages/blade + shell: bash + if: steps.cache.outputs.cache-hit == 'true' diff --git a/.github/workflows/blade-validate.yml b/.github/workflows/blade-validate.yml index fa26a1d210f..e892d2b70d9 100644 --- a/.github/workflows/blade-validate.yml +++ b/.github/workflows/blade-validate.yml @@ -26,9 +26,6 @@ jobs: - name: Run TypeScript Checks run: yarn typecheck working-directory: packages/blade - - name: Run Web & Native Tests - run: yarn test - working-directory: packages/blade - name: Check Bundle Size run: yarn bundlemon working-directory: packages/blade @@ -37,3 +34,28 @@ jobs: - name: Check Tree Shaking run: yarn size-limit working-directory: packages/blade + + test: + name: Run Tests (${{ matrix.shard }}) + runs-on: ubuntu-latest # nosemgrep: non-self-hosted-runner + strategy: + fail-fast: false + matrix: + shard: [1/4, 2/4, 3/4, 4/4] + steps: + - name: Checkout Codebase + uses: actions/checkout@v3 + - name: Use Node v18 + uses: actions/setup-node@v3 + with: + node-version: 18.12.1 + - name: Setup Cache & Install Dependencies + uses: ./.github/actions/install-dependencies + - name: Build Blade + run: yarn build + working-directory: packages/blade + - name: Run React Tests + run: yarn test + working-directory: packages/blade + env: + SHARD: ${{ matrix.shard }} diff --git a/packages/blade/docs/tokens/Border.stories.mdx b/packages/blade/docs/tokens/Border.stories.mdx index cd48bf23dcb..5a540b21b94 100644 --- a/packages/blade/docs/tokens/Border.stories.mdx +++ b/packages/blade/docs/tokens/Border.stories.mdx @@ -1,6 +1,6 @@ import { Meta, DocsContainer } from '@storybook/addon-docs'; -import { useTheme, BladeProvider } from '../../src/components'; -import { makeBorderSize } from '../../src/utils'; +import { BladeProvider } from '../../src/components'; +import { makeBorderSize, useTheme } from '../../src/utils'; import { paymentTheme, bankingTheme } from '../../src/tokens'; /jestStyledComponentsSerializer.js'], moduleFileExtensions: ['web.ts', 'web.tsx', 'ts', 'tsx', 'js', 'json', 'node'], testMatch: ['**/*.test.{ts,tsx}'], transform: { diff --git a/packages/blade/jestStyledComponentsSerializer.js b/packages/blade/jestStyledComponentsSerializer.js new file mode 100644 index 00000000000..96d8de4daa4 --- /dev/null +++ b/packages/blade/jestStyledComponentsSerializer.js @@ -0,0 +1,5 @@ +// For compatibility with jest v28+, we need to export the serializer as a function. +// See https://github.com/styled-components/jest-styled-components/issues/429 +const serializer = require('jest-styled-components').styleSheetSerializer; + +module.exports = serializer; diff --git a/packages/blade/package.json b/packages/blade/package.json index d9c957db7d1..9cdc006404f 100644 --- a/packages/blade/package.json +++ b/packages/blade/package.json @@ -98,8 +98,8 @@ "react": "yarn run react:storybook", "react:storybook": "NODE_OPTIONS=--openssl-legacy-provider FRAMEWORK=REACT start-storybook -c ./.storybook/react -p 9009", "react:storybook:build": "NODE_OPTIONS=--openssl-legacy-provider FRAMEWORK=REACT build-storybook -c ./.storybook/react -o storybook-site", - "test:react": "FRAMEWORK=REACT jest -c ./jest.web.config.js", - "test:react-native": "FRAMEWORK=REACT_NATIVE jest -c ./jest.native.config.js", + "test:react": "FRAMEWORK=REACT jest -c ./jest.web.config.js --shard=$SHARD --forceExit", + "test:react-native": "FRAMEWORK=REACT_NATIVE jest -c ./jest.native.config.js --shard=$SHARD --forceExit", "start:ios": "NODE_OPTIONS=--openssl-legacy-provider run-p react-native:storybook:start react-native:storybook:ios", "start:android": "NODE_OPTIONS=--openssl-legacy-provider run-p react-native:storybook:start react-native:storybook:android", "start:native": "NODE_OPTIONS=--openssl-legacy-provider run-p react-native:storybook:start react-native:storybook:android react-native:storybook:ios", @@ -160,13 +160,13 @@ "@testing-library/jest-dom": "5.16.4", "@testing-library/jest-native": "5.4.2", "@testing-library/react": "12.1.5", - "@testing-library/react-hooks": "5.1.2", - "@testing-library/react-native": "9.1.0", + "@testing-library/react-hooks": "8.0.1", + "@testing-library/react-native": "12.1.3", "@testing-library/user-event": "14.4.3", "@types/body-scroll-lock": "3.1.0", "@types/dedent": "0.7.0", - "@types/jest": "26.0.23", - "@types/jest-axe": "3.5.3", + "@types/jest": "29.5.3", + "@types/jest-axe": "3.5.5", "@types/jscodeshift": "0.11.6", "@types/jsdom": "20.0.1", "@types/lodash": "4.14.168", @@ -177,7 +177,7 @@ "@types/styled-components-react-native": "5.1.3", "any-leaf": "1.2.2", "args-parser": "1.3.0", - "babel-jest": "26.6.3", + "babel-jest": "29.6.1", "babel-loader": "8.2.3", "babel-plugin-module-resolver": "4.1.0", "babel-plugin-styled-components": "1.12.0", @@ -190,10 +190,11 @@ "figures": "3.2.0", "flat": "5.0.2", "ismobilejs": "1.1.1", - "jest": "26.6.3", - "jest-axe": "6.0.0", + "jest": "29.6.1", + "jest-axe": "8.0.0", + "jest-environment-jsdom": "29.6.1", "jest-matchmedia-mock": "1.1.0", - "jest-styled-components": "7.0.8", + "jest-styled-components": "7.1.1", "jest-useragent-mock": "0.1.1", "jscodeshift": "0.13.1", "jsdom": "20.0.2", @@ -206,7 +207,7 @@ "react-dom": "17.0.2", "react-native": "0.66.5", "react-native-gesture-handler": "2.9.0", - "react-native-reanimated": "2.12.0", + "react-native-reanimated": "2.14.4", "react-native-svg": "12.3.0", "react-scripts": "4.0.3", "react-test-renderer": "17.0.2", diff --git a/packages/blade/patches/bundlemon+2.0.1.patch b/packages/blade/patches/bundlemon+2.0.1.patch new file mode 100644 index 00000000000..ad89615939e --- /dev/null +++ b/packages/blade/patches/bundlemon+2.0.1.patch @@ -0,0 +1,12 @@ +diff --git a/node_modules/bundlemon/lib/main/analyzer/pathUtils.js b/node_modules/bundlemon/lib/main/analyzer/pathUtils.js +index e9ce416..1c41a0c 100644 +--- a/node_modules/bundlemon/lib/main/analyzer/pathUtils.js ++++ b/node_modules/bundlemon/lib/main/analyzer/pathUtils.js +@@ -42,6 +42,7 @@ function getAllPaths(dirPath) { + const files = entries.filter((file) => !file.isDirectory()).map((file) => path.join(dirPath, file.name)); + const folders = entries.filter((folder) => folder.isDirectory()); + for (const folder of folders) ++ if (folder.name !== 'node_modules') + files.push(...(yield getAllPaths(path.join(dirPath, folder.name)))); + return files; + }); diff --git a/packages/blade/src/components/Accordion/__tests__/Accordion.native.test.tsx b/packages/blade/src/components/Accordion/__tests__/Accordion.native.test.tsx index d1b625a6102..b7e4e0e8b1e 100644 --- a/packages/blade/src/components/Accordion/__tests__/Accordion.native.test.tsx +++ b/packages/blade/src/components/Accordion/__tests__/Accordion.native.test.tsx @@ -8,7 +8,9 @@ import { Button } from '~components/Button'; describe('', () => { // Accordion uses Collapsible which uses animations and requestAnimationFrame which makes RN tests throw warnings beforeEach(() => { - jest.useFakeTimers(); + jest.useFakeTimers({ + legacyFakeTimers: true, + }); }); afterEach(() => { jest.useRealTimers(); diff --git a/packages/blade/src/components/Accordion/__tests__/__snapshots__/Accordion.native.test.tsx.snap b/packages/blade/src/components/Accordion/__tests__/__snapshots__/Accordion.native.test.tsx.snap index ee0d4a1a9b7..e61e720c183 100644 --- a/packages/blade/src/components/Accordion/__tests__/__snapshots__/Accordion.native.test.tsx.snap +++ b/packages/blade/src/components/Accordion/__tests__/__snapshots__/Accordion.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render 1`] = ` should render 1`] = ` should render 1`] = ` @@ -66,8 +66,8 @@ exports[` should render 1`] = ` flexDirection="column" minWidth="0px" style={ - Array [ - Object { + [ + { "alignItems": "flex-start", "display": "flex", "flexDirection": "column", @@ -81,7 +81,7 @@ exports[` should render 1`] = ` accessibilityLabel="How can I setup Route?" accessibilityRole="button" accessibilityState={ - Object { + { "expanded": false, } } @@ -100,8 +100,8 @@ exports[` should render 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -111,7 +111,7 @@ exports[` should render 1`] = ` "paddingRight": 16, "paddingTop": 16, }, - Object { + { "backgroundColor": "hsla(0, 0%, 100%, 0)", }, ] @@ -124,8 +124,8 @@ exports[` should render 1`] = ` flexDirection="row" justifyContent="space-between" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -144,8 +144,8 @@ exports[` should render 1`] = ` flexDirection="row" flexShrink={1} style={ - Array [ - Object { + [ + { "alignItems": "flex-start", "display": "flex", "flexDirection": "row", @@ -157,6 +157,7 @@ exports[` should render 1`] = ` > should render 1`] = ` fontWeight="bold" lineHeight={300} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 16, @@ -192,8 +193,8 @@ exports[` should render 1`] = ` @@ -201,9 +202,9 @@ exports[` should render 1`] = ` accessibilityElementsHidden={true} importantForAccessibility="no-hide-descendants" style={ - Object { - "transform": Array [ - Object { + { + "transform": [ + { "rotateZ": "0deg", }, ], @@ -224,15 +225,15 @@ exports[` should render 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -246,7 +247,7 @@ exports[` should render 1`] = ` should render 1`] = ` fill={4288851646} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -276,8 +277,8 @@ exports[` should render 1`] = ` id="collapsible-body-1" importantForAccessibility="no-hide-descendants" style={ - Array [ - Object { + [ + { "width": "100%", }, ] @@ -287,11 +288,11 @@ exports[` should render 1`] = ` should render 1`] = ` should render 1`] = ` should render 1`] = ` should render 1`] = ` } > should render 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -363,8 +365,8 @@ exports[` should render 1`] = ` should render 1`] = ` data-blade-component="base-box" importantForAccessibility="no-hide-descendants" style={ - Array [ - Object {}, + [ + {}, ] } > should render 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -428,13 +431,13 @@ exports[` should render 1`] = ` dividerStyle="solid" isDividerHorizontal={true} style={ - Array [ - Object { + [ + { "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderStyle": "solid", "borderWidth": 0, }, - Object { + { "borderBottomStyle": "solid", "borderBottomWidth": 1, "flexGrow": 1, @@ -447,16 +450,16 @@ exports[` should render 1`] = ` @@ -467,8 +470,8 @@ exports[` should render 1`] = ` flexDirection="column" minWidth="0px" style={ - Array [ - Object { + [ + { "alignItems": "flex-start", "display": "flex", "flexDirection": "column", @@ -482,7 +485,7 @@ exports[` should render 1`] = ` accessibilityLabel="How can I setup QR Codes?" accessibilityRole="button" accessibilityState={ - Object { + { "expanded": false, } } @@ -501,8 +504,8 @@ exports[` should render 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -512,7 +515,7 @@ exports[` should render 1`] = ` "paddingRight": 16, "paddingTop": 16, }, - Object { + { "backgroundColor": "hsla(0, 0%, 100%, 0)", }, ] @@ -525,8 +528,8 @@ exports[` should render 1`] = ` flexDirection="row" justifyContent="space-between" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -545,8 +548,8 @@ exports[` should render 1`] = ` flexDirection="row" flexShrink={1} style={ - Array [ - Object { + [ + { "alignItems": "flex-start", "display": "flex", "flexDirection": "row", @@ -558,6 +561,7 @@ exports[` should render 1`] = ` > should render 1`] = ` fontWeight="bold" lineHeight={300} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 16, @@ -593,8 +597,8 @@ exports[` should render 1`] = ` @@ -602,9 +606,9 @@ exports[` should render 1`] = ` accessibilityElementsHidden={true} importantForAccessibility="no-hide-descendants" style={ - Object { - "transform": Array [ - Object { + { + "transform": [ + { "rotateZ": "0deg", }, ], @@ -625,15 +629,15 @@ exports[` should render 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -647,7 +651,7 @@ exports[` should render 1`] = ` should render 1`] = ` fill={4288851646} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -677,8 +681,8 @@ exports[` should render 1`] = ` id="collapsible-body-2" importantForAccessibility="no-hide-descendants" style={ - Array [ - Object { + [ + { "width": "100%", }, ] @@ -688,11 +692,11 @@ exports[` should render 1`] = ` should render 1`] = ` should render 1`] = ` should render 1`] = ` should render 1`] = ` } > should render 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -764,8 +769,8 @@ exports[` should render 1`] = ` should render 1`] = ` data-blade-component="base-box" importantForAccessibility="no-hide-descendants" style={ - Array [ - Object {}, + [ + {}, ] } > should render 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -829,13 +835,13 @@ exports[` should render 1`] = ` dividerStyle="solid" isDividerHorizontal={true} style={ - Array [ - Object { + [ + { "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderStyle": "solid", "borderWidth": 0, }, - Object { + { "borderBottomStyle": "solid", "borderBottomWidth": 1, "flexGrow": 1, @@ -848,16 +854,16 @@ exports[` should render 1`] = ` @@ -868,8 +874,8 @@ exports[` should render 1`] = ` flexDirection="column" minWidth="0px" style={ - Array [ - Object { + [ + { "alignItems": "flex-start", "display": "flex", "flexDirection": "column", @@ -883,7 +889,7 @@ exports[` should render 1`] = ` accessibilityLabel="How can I setup Subscriptions?" accessibilityRole="button" accessibilityState={ - Object { + { "expanded": false, } } @@ -902,8 +908,8 @@ exports[` should render 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -913,7 +919,7 @@ exports[` should render 1`] = ` "paddingRight": 16, "paddingTop": 16, }, - Object { + { "backgroundColor": "hsla(0, 0%, 100%, 0)", }, ] @@ -926,8 +932,8 @@ exports[` should render 1`] = ` flexDirection="row" justifyContent="space-between" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -946,8 +952,8 @@ exports[` should render 1`] = ` flexDirection="row" flexShrink={1} style={ - Array [ - Object { + [ + { "alignItems": "flex-start", "display": "flex", "flexDirection": "row", @@ -959,6 +965,7 @@ exports[` should render 1`] = ` > should render 1`] = ` fontWeight="bold" lineHeight={300} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 16, @@ -994,8 +1001,8 @@ exports[` should render 1`] = ` @@ -1003,9 +1010,9 @@ exports[` should render 1`] = ` accessibilityElementsHidden={true} importantForAccessibility="no-hide-descendants" style={ - Object { - "transform": Array [ - Object { + { + "transform": [ + { "rotateZ": "0deg", }, ], @@ -1026,15 +1033,15 @@ exports[` should render 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -1048,7 +1055,7 @@ exports[` should render 1`] = ` should render 1`] = ` fill={4288851646} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -1078,8 +1085,8 @@ exports[` should render 1`] = ` id="collapsible-body-3" importantForAccessibility="no-hide-descendants" style={ - Array [ - Object { + [ + { "width": "100%", }, ] @@ -1089,11 +1096,11 @@ exports[` should render 1`] = ` should render 1`] = ` should render 1`] = ` should render 1`] = ` should render 1`] = ` } > should render 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -1165,8 +1173,8 @@ exports[` should render 1`] = ` should render 1`] = ` data-blade-component="base-box" importantForAccessibility="no-hide-descendants" style={ - Array [ - Object {}, + [ + {}, ] } > should render 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -1230,13 +1239,13 @@ exports[` should render 1`] = ` dividerStyle="solid" isDividerHorizontal={true} style={ - Array [ - Object { + [ + { "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderStyle": "solid", "borderWidth": 0, }, - Object { + { "borderBottomStyle": "solid", "borderBottomWidth": 1, "flexGrow": 1, diff --git a/packages/blade/src/components/Accordion/__tests__/__snapshots__/Accordion.ssr.test.tsx.snap b/packages/blade/src/components/Accordion/__tests__/__snapshots__/Accordion.ssr.test.tsx.snap index 84720b87e09..559b091e28c 100644 --- a/packages/blade/src/components/Accordion/__tests__/__snapshots__/Accordion.ssr.test.tsx.snap +++ b/packages/blade/src/components/Accordion/__tests__/__snapshots__/Accordion.ssr.test.tsx.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[` should render Accordion on server 1`] = `"

You can use Razorpay Route from the Dashboard or using APIs to transfer money to customers. You may also check our docs for detailed instructions.

Just use Razorpay. You may also check our docs for detailed instructions. Please use the search functionality to ask your queries.

Just use Razorpay.

"`; +exports[` should render Accordion on server 1`] = `"
"`; exports[` should render Accordion on server 2`] = `
should render 1`] = ` @@ -24,11 +25,11 @@ exports[` should render 1`] = ` isDesktop={false} isFullWidth={false} style={ - Array [ - Object { + [ + { "textAlign": "left", }, - Object { + { "alignItems": "flex-start", "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderColor": "hsla(216, 15%, 54%, 0.32)", @@ -52,8 +53,8 @@ exports[` should render 1`] = ` data-blade-component="base-box" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", "marginTop": 0, }, @@ -74,15 +75,15 @@ exports[` should render 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 16, "width": 16, @@ -96,7 +97,7 @@ exports[` should render 1`] = ` should render 1`] = ` d="M12 11C12.5523 11 13 11.4477 13 12V16C13 16.5523 12.5523 17 12 17C11.4477 17 11 16.5523 11 16V12C11 11.4477 11.4477 11 12 11Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -114,7 +115,7 @@ exports[` should render 1`] = ` d="M12 7C11.4477 7 11 7.44772 11 8C11 8.55228 11.4477 9 12 9H12.01C12.5623 9 13.01 8.55228 13.01 8C13.01 7.44772 12.5623 7 12.01 7H12Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -125,7 +126,7 @@ exports[` should render 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -137,8 +138,8 @@ exports[` should render 1`] = ` should render 1`] = ` should render 1`] = ` fontWeight="regular" lineHeight={50} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -195,8 +197,8 @@ exports[` should render 1`] = ` @@ -217,8 +219,8 @@ exports[` should render 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignSelf": "center", }, ] @@ -238,15 +240,15 @@ exports[` should render 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 16, "width": 16, @@ -260,7 +262,7 @@ exports[` should render 1`] = ` should render 1`] = ` d="M18.7071 6.70711C19.0976 6.31658 19.0976 5.68342 18.7071 5.29289C18.3166 4.90237 17.6834 4.90237 17.2929 5.29289L12 10.5858L6.70711 5.29289C6.31658 4.90237 5.68342 4.90237 5.29289 5.29289C4.90237 5.68342 4.90237 6.31658 5.29289 6.70711L10.5858 12L5.29289 17.2929C4.90237 17.6834 4.90237 18.3166 5.29289 18.7071C5.68342 19.0976 6.31658 19.0976 6.70711 18.7071L12 13.4142L17.2929 18.7071C17.6834 19.0976 18.3166 19.0976 18.7071 18.7071C19.0976 18.3166 19.0976 17.6834 18.7071 17.2929L13.4142 12L18.7071 6.70711Z" fill={4288851646} propList={ - Array [ + [ "fill", ] } @@ -286,17 +288,18 @@ exports[` should render 1`] = ` exports[` should render positive intent and full width 1`] = ` @@ -307,11 +310,11 @@ exports[` should render positive intent and full width 1`] = ` isDesktop={false} isFullWidth={true} style={ - Array [ - Object { + [ + { "textAlign": "left", }, - Object { + { "alignItems": "flex-start", "backgroundColor": "hsla(155, 100%, 31%, 0.09)", "borderColor": "hsla(155, 100%, 31%, 0.32)", @@ -336,8 +339,8 @@ exports[` should render positive intent and full width 1`] = ` data-blade-component="base-box" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", "marginTop": 2, }, @@ -358,15 +361,15 @@ exports[` should render positive intent and full width 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -380,7 +383,7 @@ exports[` should render positive intent and full width 1`] = ` should render positive intent and full width 1`] = ` d="M4.15845 7.14679C6.74812 4.11688 11.0222 3.1512 14.663 4.77343C15.1675 4.99821 15.7586 4.77147 15.9834 4.267C16.2082 3.76253 15.9815 3.17135 15.477 2.94657C11.0272 0.96385 5.80325 2.14413 2.6381 5.84735C-0.527049 9.55057 -0.879431 14.8946 1.77205 18.9813C4.42353 23.0681 9.44725 24.9241 14.1189 23.5429C18.7905 22.1616 21.9972 17.8716 22 13V12.07C22 11.5177 21.5523 11.07 21 11.07C20.4477 11.07 20 11.5177 20 12.07V12.9994C19.9977 16.9852 17.3741 20.4948 13.5518 21.6249C9.72957 22.7551 5.61926 21.2365 3.44986 17.8928C1.28047 14.5491 1.56878 10.1767 4.15845 7.14679Z" fill={4278224216} propList={ - Array [ + [ "fill", ] } @@ -401,7 +404,7 @@ exports[` should render positive intent and full width 1`] = ` d="M22.7071 4.70711C23.0976 4.31658 23.0976 3.68342 22.7071 3.29289C22.3166 2.90237 21.6834 2.90237 21.2929 3.29289L11 13.5858L8.70711 11.2929C8.31658 10.9024 7.68342 10.9024 7.29289 11.2929C6.90237 11.6834 6.90237 12.3166 7.29289 12.7071L10.2929 15.7071C10.6834 16.0976 11.3166 16.0976 11.7071 15.7071L22.7071 4.70711Z" fill={4278224216} propList={ - Array [ + [ "fill", ] } @@ -415,7 +418,7 @@ exports[` should render positive intent and full width 1`] = ` fill={4294967295} height="24" propList={ - Array [ + [ "fill", ] } @@ -431,8 +434,8 @@ exports[` should render positive intent and full width 1`] = ` should render positive intent and full width 1`] = ` should render positive intent and full width 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -489,8 +493,8 @@ exports[` should render positive intent and full width 1`] = ` @@ -511,8 +515,8 @@ exports[` should render positive intent and full width 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignSelf": "center", }, ] @@ -532,15 +536,15 @@ exports[` should render positive intent and full width 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -554,7 +558,7 @@ exports[` should render positive intent and full width 1`] = ` should render positive intent and full width 1`] = ` d="M18.7071 6.70711C19.0976 6.31658 19.0976 5.68342 18.7071 5.29289C18.3166 4.90237 17.6834 4.90237 17.2929 5.29289L12 10.5858L6.70711 5.29289C6.31658 4.90237 5.68342 4.90237 5.29289 5.29289C4.90237 5.68342 4.90237 6.31658 5.29289 6.70711L10.5858 12L5.29289 17.2929C4.90237 17.6834 4.90237 18.3166 5.29289 18.7071C5.68342 19.0976 6.31658 19.0976 6.70711 18.7071L12 13.4142L17.2929 18.7071C17.6834 19.0976 18.3166 19.0976 18.7071 18.7071C19.0976 18.3166 19.0976 17.6834 18.7071 17.2929L13.4142 12L18.7071 6.70711Z" fill={4288851646} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Alert/__tests__/__snapshots__/Alert.ssr.test.tsx.snap b/packages/blade/src/components/Alert/__tests__/__snapshots__/Alert.ssr.test.tsx.snap index 24073a17b31..7bfc3581966 100644 --- a/packages/blade/src/components/Alert/__tests__/__snapshots__/Alert.ssr.test.tsx.snap +++ b/packages/blade/src/components/Alert/__tests__/__snapshots__/Alert.ssr.test.tsx.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[` should render Alert on server 1`] = `"

Currently you can only accept payments in international currencies using PayPal.

"`; +exports[` should render Alert on server 1`] = `"

Currently you can only accept payments in international currencies using PayPal.

"`; exports[` should render Alert on server 2`] = `
should render Amount with default props 1`] = ` should render Amount with default props 1`] = ` data-blade-component="amount" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -25,8 +25,8 @@ exports[` should render Amount with default props 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "baseline", "display": "flex", "flexDirection": "row", @@ -37,14 +37,15 @@ exports[` should render Amount with default props 1`] = ` } > should render Amount with default props 1`] = ` ₹ should render Amount with default props 1`] = ` } > should render Amount with default props 1`] = ` . should render Amount with default props 1`] = ` exports[` should render MYR currency Amount 1`] = ` should render MYR currency Amount 1`] = ` data-blade-component="amount" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -182,8 +186,8 @@ exports[` should render MYR currency Amount 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "baseline", "display": "flex", "flexDirection": "row", @@ -194,14 +198,15 @@ exports[` should render MYR currency Amount 1`] = ` } > should render MYR currency Amount 1`] = ` RM should render MYR currency Amount 1`] = ` } > should render MYR currency Amount 1`] = ` . should render MYR currency Amount 1`] = ` exports[` should render all sizes of Amount 1`] = ` should render all sizes of Amount 1`] = ` data-blade-component="amount" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -339,8 +347,8 @@ exports[` should render all sizes of Amount 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "baseline", "display": "flex", "flexDirection": "row", @@ -351,14 +359,15 @@ exports[` should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` ₹ should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` . should render all sizes of Amount 1`] = ` data-blade-component="amount" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -485,8 +497,8 @@ exports[` should render all sizes of Amount 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "baseline", "display": "flex", "flexDirection": "row", @@ -497,14 +509,15 @@ exports[` should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` ₹ should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` . should render all sizes of Amount 1`] = ` data-blade-component="amount" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -631,8 +647,8 @@ exports[` should render all sizes of Amount 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "baseline", "display": "flex", "flexDirection": "row", @@ -643,14 +659,15 @@ exports[` should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` ₹ should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` . should render all sizes of Amount 1`] = ` data-blade-component="amount" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -777,8 +797,8 @@ exports[` should render all sizes of Amount 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "baseline", "display": "flex", "flexDirection": "row", @@ -789,14 +809,15 @@ exports[` should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` ₹ should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` . should render all sizes of Amount 1`] = ` data-blade-component="amount" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -923,8 +947,8 @@ exports[` should render all sizes of Amount 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "baseline", "display": "flex", "flexDirection": "row", @@ -935,14 +959,15 @@ exports[` should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` ₹ should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` . should render all sizes of Amount 1`] = ` data-blade-component="amount" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1069,8 +1097,8 @@ exports[` should render all sizes of Amount 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "baseline", "display": "flex", "flexDirection": "row", @@ -1081,14 +1109,15 @@ exports[` should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` ₹ should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` . should render all sizes of Amount 1`] = ` data-blade-component="amount" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1215,8 +1247,8 @@ exports[` should render all sizes of Amount 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "baseline", "display": "flex", "flexDirection": "row", @@ -1227,14 +1259,15 @@ exports[` should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` ₹ should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` . should render all sizes of Amount 1`] = ` data-blade-component="amount" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1361,8 +1397,8 @@ exports[` should render all sizes of Amount 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "baseline", "display": "flex", "flexDirection": "row", @@ -1373,14 +1409,15 @@ exports[` should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` ₹ should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` . should render all sizes of Amount 1`] = ` data-blade-component="amount" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1507,8 +1547,8 @@ exports[` should render all sizes of Amount 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "baseline", "display": "flex", "flexDirection": "row", @@ -1519,14 +1559,15 @@ exports[` should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` ₹ should render all sizes of Amount 1`] = ` } > should render all sizes of Amount 1`] = ` . should render all sizes of Amount 1`] = ` exports[` should render amount with Decimal value 1`] = ` should render amount with Decimal value 1`] = ` data-blade-component="amount" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1664,8 +1708,8 @@ exports[` should render amount with Decimal value 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "baseline", "display": "flex", "flexDirection": "row", @@ -1676,14 +1720,15 @@ exports[` should render amount with Decimal value 1`] = ` } > should render amount with Decimal value 1`] = ` ₹ should render amount with Decimal value 1`] = ` } > should render amount with Decimal value 1`] = ` . should render amount with Decimal value 1`] = ` exports[` should render amount with Humanize value 1`] = ` should render amount with Humanize value 1`] = ` data-blade-component="amount" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1821,8 +1869,8 @@ exports[` should render amount with Humanize value 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "baseline", "display": "flex", "flexDirection": "row", @@ -1833,14 +1881,15 @@ exports[` should render amount with Humanize value 1`] = ` } > should render amount with Humanize value 1`] = ` ₹ should render amount with Humanize value 1`] = ` exports[` should render information intent Amount 1`] = ` should render information intent Amount 1`] = ` data-blade-component="amount" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1922,8 +1972,8 @@ exports[` should render information intent Amount 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "baseline", "display": "flex", "flexDirection": "row", @@ -1934,14 +1984,15 @@ exports[` should render information intent Amount 1`] = ` } > should render information intent Amount 1`] = ` ₹ should render information intent Amount 1`] = ` exports[` should render positive intent Amount 1`] = ` should render positive intent Amount 1`] = ` data-blade-component="amount" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -2023,8 +2075,8 @@ exports[` should render positive intent Amount 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "baseline", "display": "flex", "flexDirection": "row", @@ -2035,14 +2087,15 @@ exports[` should render positive intent Amount 1`] = ` } > should render positive intent Amount 1`] = ` ₹ should render positive intent Amount 1`] = ` } > should render positive intent Amount 1`] = ` . should render Amount on server 1`] = `"
₹10,000.00
"`; +exports[` should render Amount on server 1`] = `"
₹10,000.00
"`; exports[` should render Amount on server 2`] = `
should render Badge with Icon 1`] = ` should render Badge with Icon 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -24,12 +24,12 @@ exports[` should render Badge with Icon 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderRadius": 9999, @@ -48,8 +48,8 @@ exports[` should render Badge with Icon 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -67,8 +67,8 @@ exports[` should render Badge with Icon 1`] = ` data-blade-component="base-box" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", "paddingRight": 4, }, @@ -89,15 +89,15 @@ exports[` should render Badge with Icon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 12, "width": 12, @@ -111,7 +111,7 @@ exports[` should render Badge with Icon 1`] = ` should render Badge with Icon 1`] = ` d="M12 11C12.5523 11 13 11.4477 13 12V16C13 16.5523 12.5523 17 12 17C11.4477 17 11 16.5523 11 16V12C11 11.4477 11.4477 11 12 11Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -129,7 +129,7 @@ exports[` should render Badge with Icon 1`] = ` d="M12 7C11.4477 7 11 7.44772 11 8C11 8.55228 11.4477 9 12 9H12.01C12.5623 9 13.01 8.55228 13.01 8C13.01 7.44772 12.5623 7 12.01 7H12Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -140,7 +140,7 @@ exports[` should render Badge with Icon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -150,6 +150,7 @@ exports[` should render Badge with Icon 1`] = ` should render Badge with Icon 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -191,7 +192,7 @@ exports[` should render Badge with Icon 1`] = ` exports[` should render Badge with bold font 1`] = ` should render Badge with bold font 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -212,12 +213,12 @@ exports[` should render Badge with bold font 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderRadius": 9999, @@ -236,8 +237,8 @@ exports[` should render Badge with bold font 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -252,6 +253,7 @@ exports[` should render Badge with bold font 1`] = ` } > should render Badge with bold font 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -293,7 +295,7 @@ exports[` should render Badge with bold font 1`] = ` exports[` should render Badge with default props 1`] = ` should render Badge with default props 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -314,12 +316,12 @@ exports[` should render Badge with default props 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderRadius": 9999, @@ -338,8 +340,8 @@ exports[` should render Badge with default props 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -354,6 +356,7 @@ exports[` should render Badge with default props 1`] = ` } > should render Badge with default props 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -395,7 +398,7 @@ exports[` should render Badge with default props 1`] = ` exports[` should render high contrast blue variant Badge 1`] = ` should render high contrast blue variant Badge 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -416,12 +419,12 @@ exports[` should render high contrast blue variant Badge 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(218, 89%, 51%, 1)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 1)", "borderRadius": 9999, @@ -440,8 +443,8 @@ exports[` should render high contrast blue variant Badge 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -456,6 +459,7 @@ exports[` should render high contrast blue variant Badge 1`] = ` } > should render high contrast blue variant Badge 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(0, 0%, 100%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -497,7 +501,7 @@ exports[` should render high contrast blue variant Badge 1`] = ` exports[` should render high contrast information variant Badge 1`] = ` should render high contrast information variant Badge 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -518,12 +522,12 @@ exports[` should render high contrast information variant Badge 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(193, 100%, 35%, 1)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(193, 100%, 35%, 1)", "borderRadius": 9999, @@ -542,8 +546,8 @@ exports[` should render high contrast information variant Badge 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -558,6 +562,7 @@ exports[` should render high contrast information variant Badge 1`] = ` } > should render high contrast information variant Badge 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(0, 0%, 100%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -599,7 +604,7 @@ exports[` should render high contrast information variant Badge 1`] = ` exports[` should render high contrast negative variant Badge 1`] = ` should render high contrast negative variant Badge 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -620,12 +625,12 @@ exports[` should render high contrast negative variant Badge 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(8, 73%, 47%, 1)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(8, 73%, 47%, 1)", "borderRadius": 9999, @@ -644,8 +649,8 @@ exports[` should render high contrast negative variant Badge 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -660,6 +665,7 @@ exports[` should render high contrast negative variant Badge 1`] = ` } > should render high contrast negative variant Badge 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(0, 0%, 100%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -701,7 +707,7 @@ exports[` should render high contrast negative variant Badge 1`] = ` exports[` should render high contrast neutral variant Badge 1`] = ` should render high contrast neutral variant Badge 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -722,12 +728,12 @@ exports[` should render high contrast neutral variant Badge 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(216, 33%, 29%, 1)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(216, 33%, 29%, 1)", "borderRadius": 9999, @@ -746,8 +752,8 @@ exports[` should render high contrast neutral variant Badge 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -762,6 +768,7 @@ exports[` should render high contrast neutral variant Badge 1`] = ` } > should render high contrast neutral variant Badge 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(0, 0%, 100%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -803,7 +810,7 @@ exports[` should render high contrast neutral variant Badge 1`] = ` exports[` should render high contrast notice variant Badge 1`] = ` should render high contrast notice variant Badge 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -824,12 +831,12 @@ exports[` should render high contrast notice variant Badge 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(38, 97%, 38%, 1)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(38, 97%, 38%, 1)", "borderRadius": 9999, @@ -848,8 +855,8 @@ exports[` should render high contrast notice variant Badge 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -864,6 +871,7 @@ exports[` should render high contrast notice variant Badge 1`] = ` } > should render high contrast notice variant Badge 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(0, 0%, 100%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -905,7 +913,7 @@ exports[` should render high contrast notice variant Badge 1`] = ` exports[` should render high contrast positive variant Badge 1`] = ` should render high contrast positive variant Badge 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -926,12 +934,12 @@ exports[` should render high contrast positive variant Badge 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(160, 100%, 26%, 1)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(160, 100%, 26%, 1)", "borderRadius": 9999, @@ -950,8 +958,8 @@ exports[` should render high contrast positive variant Badge 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -966,6 +974,7 @@ exports[` should render high contrast positive variant Badge 1`] = ` } > should render high contrast positive variant Badge 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(0, 0%, 100%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -1007,7 +1016,7 @@ exports[` should render high contrast positive variant Badge 1`] = ` exports[` should render large size Badge 1`] = ` should render large size Badge 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1028,12 +1037,12 @@ exports[` should render large size Badge 1`] = ` data-blade-component="base-box" size="large" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderRadius": 9999, @@ -1052,8 +1061,8 @@ exports[` should render large size Badge 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1068,6 +1077,7 @@ exports[` should render large size Badge 1`] = ` } > should render large size Badge 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -1109,7 +1119,7 @@ exports[` should render large size Badge 1`] = ` exports[` should render low contrast blue variant Badge 1`] = ` should render low contrast blue variant Badge 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1130,12 +1140,12 @@ exports[` should render low contrast blue variant Badge 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(218, 89%, 51%, 0.09)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 0.09)", "borderRadius": 9999, @@ -1154,8 +1164,8 @@ exports[` should render low contrast blue variant Badge 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1170,6 +1180,7 @@ exports[` should render low contrast blue variant Badge 1`] = ` } > should render low contrast blue variant Badge 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(218, 89%, 51%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -1211,7 +1222,7 @@ exports[` should render low contrast blue variant Badge 1`] = ` exports[` should render low contrast information variant Badge 1`] = ` should render low contrast information variant Badge 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1232,12 +1243,12 @@ exports[` should render low contrast information variant Badge 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(193, 100%, 35%, 0.09)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(193, 100%, 35%, 0.09)", "borderRadius": 9999, @@ -1256,8 +1267,8 @@ exports[` should render low contrast information variant Badge 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1272,6 +1283,7 @@ exports[` should render low contrast information variant Badge 1`] = ` } > should render low contrast information variant Badge 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(193, 100%, 35%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -1313,7 +1325,7 @@ exports[` should render low contrast information variant Badge 1`] = ` exports[` should render low contrast negative variant Badge 1`] = ` should render low contrast negative variant Badge 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1334,12 +1346,12 @@ exports[` should render low contrast negative variant Badge 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(9, 91%, 56%, 0.09)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(9, 91%, 56%, 0.09)", "borderRadius": 9999, @@ -1358,8 +1370,8 @@ exports[` should render low contrast negative variant Badge 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1374,6 +1386,7 @@ exports[` should render low contrast negative variant Badge 1`] = ` } > should render low contrast negative variant Badge 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(8, 73%, 47%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -1415,7 +1428,7 @@ exports[` should render low contrast negative variant Badge 1`] = ` exports[` should render low contrast neutral variant Badge 1`] = ` should render low contrast neutral variant Badge 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1436,12 +1449,12 @@ exports[` should render low contrast neutral variant Badge 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderRadius": 9999, @@ -1460,8 +1473,8 @@ exports[` should render low contrast neutral variant Badge 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1476,6 +1489,7 @@ exports[` should render low contrast neutral variant Badge 1`] = ` } > should render low contrast neutral variant Badge 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -1517,7 +1531,7 @@ exports[` should render low contrast neutral variant Badge 1`] = ` exports[` should render low contrast notice variant Badge 1`] = ` should render low contrast notice variant Badge 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1538,12 +1552,12 @@ exports[` should render low contrast notice variant Badge 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(36, 100%, 44%, 0.09)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(36, 100%, 44%, 0.09)", "borderRadius": 9999, @@ -1562,8 +1576,8 @@ exports[` should render low contrast notice variant Badge 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1578,6 +1592,7 @@ exports[` should render low contrast notice variant Badge 1`] = ` } > should render low contrast notice variant Badge 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(38, 97%, 38%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -1619,7 +1634,7 @@ exports[` should render low contrast notice variant Badge 1`] = ` exports[` should render low contrast positive variant Badge 1`] = ` should render low contrast positive variant Badge 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1640,12 +1655,12 @@ exports[` should render low contrast positive variant Badge 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(155, 100%, 31%, 0.09)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(155, 100%, 31%, 0.09)", "borderRadius": 9999, @@ -1664,8 +1679,8 @@ exports[` should render low contrast positive variant Badge 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1680,6 +1695,7 @@ exports[` should render low contrast positive variant Badge 1`] = ` } > should render low contrast positive variant Badge 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(160, 100%, 26%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -1721,7 +1737,7 @@ exports[` should render low contrast positive variant Badge 1`] = ` exports[` should render medium size Badge 1`] = ` should render medium size Badge 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1742,12 +1758,12 @@ exports[` should render medium size Badge 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderRadius": 9999, @@ -1766,8 +1782,8 @@ exports[` should render medium size Badge 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1782,6 +1798,7 @@ exports[` should render medium size Badge 1`] = ` } > should render medium size Badge 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -1823,7 +1840,7 @@ exports[` should render medium size Badge 1`] = ` exports[` should render small size Badge 1`] = ` should render small size Badge 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1844,12 +1861,12 @@ exports[` should render small size Badge 1`] = ` data-blade-component="base-box" size="small" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderRadius": 9999, @@ -1868,8 +1885,8 @@ exports[` should render small size Badge 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1884,6 +1901,7 @@ exports[` should render small size Badge 1`] = ` } > should render small size Badge 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 10, diff --git a/packages/blade/src/components/Badge/__tests__/__snapshots__/Badge.ssr.test.tsx.snap b/packages/blade/src/components/Badge/__tests__/__snapshots__/Badge.ssr.test.tsx.snap index a74ce591838..4e91282a16d 100644 --- a/packages/blade/src/components/Badge/__tests__/__snapshots__/Badge.ssr.test.tsx.snap +++ b/packages/blade/src/components/Badge/__tests__/__snapshots__/Badge.ssr.test.tsx.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[` should render Badge on server 1`] = `"

Label

"`; +exports[` should render Badge on server 1`] = `"

Label

"`; exports[` should render Badge on server 2`] = `
should render Header/Footer/Body properly 1`] = ` should render Header/Footer/Body properly 1`] = ` onGestureHandlerStateChange={[Function]} pointerEvents="auto" style={ - Array [ - Object { + [ + { "backgroundColor": "black", }, - Array [ - Object { + [ + { "bottom": 0, "left": 0, "position": "absolute", "right": 0, "top": 0, }, - Object { + { "backgroundColor": "hsla(214, 15%, 18%, 0.64)", "zIndex": 100, }, ], - Object { + { "flex": 1, "opacity": undefined, }, @@ -48,18 +48,18 @@ exports[` should render Header/Footer/Body properly 1`] = ` onLayout={[Function]} pointerEvents="box-none" style={ - Array [ - Object { + [ + { "zIndex": 100, }, - Object { + { "bottom": 0, "left": 0, "position": "absolute", "right": 0, "top": 0, }, - Object { + { "bottom": 0, "overflow": "hidden", "top": 0, @@ -69,27 +69,27 @@ exports[` should render Header/Footer/Body properly 1`] = ` > should render Header/Footer/Body properly 1`] = ` > should render Header/Footer/Body properly 1`] = ` "justifyContent": "center", "position": "relative", }, - Object { + { "bottom": 0, "left": 0, "position": "absolute", @@ -136,11 +136,11 @@ exports[` should render Header/Footer/Body properly 1`] = ` should render Header/Footer/Body properly 1`] = ` onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} style={ - Array [ - Object {}, - Object { + [ + {}, + { "height": 0, }, ] @@ -165,8 +165,8 @@ exports[` should render Header/Footer/Body properly 1`] = ` onLayout={[Function]} pointerEvents="box-none" style={ - Array [ - Object { + [ + { "left": 0, "position": "absolute", "right": 0, @@ -174,9 +174,9 @@ exports[` should render Header/Footer/Body properly 1`] = ` "zIndex": 9999, }, undefined, - Object { - "transform": Array [ - Object { + { + "transform": [ + { "translateY": 999, }, ], @@ -192,8 +192,8 @@ exports[` should render Header/Footer/Body properly 1`] = ` data-blade-component="base-box" flexShrink={0} style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(0, 0%, 100%, 1)", "flexShrink": 0, "marginTop": "auto", @@ -215,13 +215,13 @@ exports[` should render Header/Footer/Body properly 1`] = ` dividerStyle="solid" isDividerHorizontal={true} style={ - Array [ - Object { + [ + { "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderStyle": "solid", "borderWidth": 0, }, - Object { + { "borderBottomStyle": "solid", "borderBottomWidth": 1, "flexGrow": 1, @@ -233,8 +233,8 @@ exports[` should render Header/Footer/Body properly 1`] = ` should render Header/Footer/Body properly 1`] = ` should render Header/Footer/Body properly 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 0)", @@ -306,7 +306,7 @@ exports[` should render Header/Footer/Body properly 1`] = ` "textDecorationStyle": "solid", "width": "100%", }, - Object { + { "backgroundColor": "hsla(218, 89%, 51%, 0)", "borderColor": "hsla(218, 89%, 51%, 1)", }, @@ -322,8 +322,8 @@ exports[` should render Header/Footer/Body properly 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -332,21 +332,22 @@ exports[` should render Header/Footer/Body properly 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render Header/Footer/Body properly 1`] = ` position="relative" right="spacing.0" style={ - Array [ - Object { + [ + { "left": 0, "position": "relative", "right": 0, @@ -411,8 +412,8 @@ exports[` should render Header/Footer/Body properly 1`] = ` should render Header/Footer/Body properly 1`] = ` should render Header/Footer/Body properly 1`] = ` should render Header/Footer/Body properly 1`] = ` flexShrink={0} overflow="visible" style={ - Array [ - Object { + [ + { "flexShrink": 0, "overflow": "visible", }, @@ -477,16 +478,16 @@ exports[` should render Header/Footer/Body properly 1`] = ` should render Header/Footer/Body properly 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "userSelect": "none", @@ -518,8 +519,8 @@ exports[` should render Header/Footer/Body properly 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "flex-start", "display": "flex", "flexBasis": "auto", @@ -535,8 +536,8 @@ exports[` should render Header/Footer/Body properly 1`] = ` should render Header/Footer/Body properly 1`] = ` flexDirection="row" flexShrink={0} style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "flexShrink": 0, @@ -561,6 +562,7 @@ exports[` should render Header/Footer/Body properly 1`] = ` > should render Header/Footer/Body properly 1`] = ` fontWeight="bold" lineHeight={300} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 16, @@ -595,8 +597,8 @@ exports[` should render Header/Footer/Body properly 1`] = ` should render Header/Footer/Body properly 1`] = ` height="28px" justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "height": 28, @@ -623,8 +625,8 @@ exports[` should render Header/Footer/Body properly 1`] = ` data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -636,11 +638,11 @@ exports[` should render Header/Footer/Body properly 1`] = ` platform="onMobile" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(155, 100%, 31%, 0.09)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(155, 100%, 31%, 0.09)", "borderRadius": 9999, @@ -659,8 +661,8 @@ exports[` should render Header/Footer/Body properly 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -675,6 +677,7 @@ exports[` should render Header/Footer/Body properly 1`] = ` } > should render Header/Footer/Body properly 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(160, 100%, 26%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -716,6 +719,7 @@ exports[` should render Header/Footer/Body properly 1`] = ` should render Header/Footer/Body properly 1`] = ` fontWeight="regular" lineHeight={50} style={ - Array [ - Object { + [ + { "color": "hsla(216, 16%, 60%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -752,8 +756,8 @@ exports[` should render Header/Footer/Body properly 1`] = ` should render Header/Footer/Body properly 1`] = ` height="28px" justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "height": 28, @@ -780,8 +784,8 @@ exports[` should render Header/Footer/Body properly 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -792,12 +796,12 @@ exports[` should render Header/Footer/Body properly 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(155, 100%, 31%, 0.09)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(155, 100%, 31%, 0.09)", "borderRadius": 9999, @@ -816,8 +820,8 @@ exports[` should render Header/Footer/Body properly 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -832,6 +836,7 @@ exports[` should render Header/Footer/Body properly 1`] = ` } > should render Header/Footer/Body properly 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(160, 100%, 26%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -876,8 +881,8 @@ exports[` should render Header/Footer/Body properly 1`] = ` height="28px" justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "height": 28, @@ -903,8 +908,8 @@ exports[` should render Header/Footer/Body properly 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignSelf": "center", }, ] @@ -924,15 +929,15 @@ exports[` should render Header/Footer/Body properly 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -946,7 +951,7 @@ exports[` should render Header/Footer/Body properly 1`] = ` should render Header/Footer/Body properly 1`] = ` d="M18.7071 6.70711C19.0976 6.31658 19.0976 5.68342 18.7071 5.29289C18.3166 4.90237 17.6834 4.90237 17.2929 5.29289L12 10.5858L6.70711 5.29289C6.31658 4.90237 5.68342 4.90237 5.29289 5.29289C4.90237 5.68342 4.90237 6.31658 5.29289 6.70711L10.5858 12L5.29289 17.2929C4.90237 17.6834 4.90237 18.3166 5.29289 18.7071C5.68342 19.0976 6.31658 19.0976 6.70711 18.7071L12 13.4142L17.2929 18.7071C17.6834 19.0976 18.3166 19.0976 18.7071 18.7071C19.0976 18.3166 19.0976 17.6834 18.7071 17.2929L13.4142 12L18.7071 6.70711Z" fill={4288851646} propList={ - Array [ + [ "fill", ] } @@ -974,13 +979,13 @@ exports[` should render Header/Footer/Body properly 1`] = ` dividerStyle="solid" isDividerHorizontal={true} style={ - Array [ - Object { + [ + { "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderStyle": "solid", "borderWidth": 0, }, - Object { + { "borderBottomStyle": "solid", "borderBottomWidth": 1, "flexGrow": 1, @@ -1001,7 +1006,7 @@ exports[` should render Header/Footer/Body properly 1`] = ` exports[` should render empty header 1`] = ` should render empty header 1`] = ` onGestureHandlerStateChange={[Function]} pointerEvents="auto" style={ - Array [ - Object { + [ + { "backgroundColor": "black", }, - Array [ - Object { + [ + { "bottom": 0, "left": 0, "position": "absolute", "right": 0, "top": 0, }, - Object { + { "backgroundColor": "hsla(214, 15%, 18%, 0.64)", "zIndex": 100, }, ], - Object { + { "flex": 1, "opacity": undefined, }, @@ -1046,18 +1051,18 @@ exports[` should render empty header 1`] = ` onLayout={[Function]} pointerEvents="box-none" style={ - Array [ - Object { + [ + { "zIndex": 100, }, - Object { + { "bottom": 0, "left": 0, "position": "absolute", "right": 0, "top": 0, }, - Object { + { "bottom": 0, "overflow": "hidden", "top": 0, @@ -1067,27 +1072,27 @@ exports[` should render empty header 1`] = ` > should render empty header 1`] = ` > should render empty header 1`] = ` "justifyContent": "center", "position": "relative", }, - Object { + { "bottom": 0, "left": 0, "position": "absolute", @@ -1134,11 +1139,11 @@ exports[` should render empty header 1`] = ` should render empty header 1`] = ` onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} style={ - Array [ - Object {}, - Object { + [ + {}, + { "height": 0, }, ] @@ -1163,8 +1168,8 @@ exports[` should render empty header 1`] = ` onLayout={[Function]} pointerEvents="box-none" style={ - Array [ - Object { + [ + { "left": 0, "position": "absolute", "right": 0, @@ -1172,9 +1177,9 @@ exports[` should render empty header 1`] = ` "zIndex": 9999, }, undefined, - Object { - "transform": Array [ - Object { + { + "transform": [ + { "translateY": 999, }, ], @@ -1190,8 +1195,8 @@ exports[` should render empty header 1`] = ` data-blade-component="base-box" flexShrink={0} style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(0, 0%, 100%, 1)", "flexShrink": 0, "marginTop": "auto", @@ -1213,13 +1218,13 @@ exports[` should render empty header 1`] = ` dividerStyle="solid" isDividerHorizontal={true} style={ - Array [ - Object { + [ + { "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderStyle": "solid", "borderWidth": 0, }, - Object { + { "borderBottomStyle": "solid", "borderBottomWidth": 1, "flexGrow": 1, @@ -1231,8 +1236,8 @@ exports[` should render empty header 1`] = ` should render empty header 1`] = ` should render empty header 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 0)", @@ -1304,7 +1309,7 @@ exports[` should render empty header 1`] = ` "textDecorationStyle": "solid", "width": "100%", }, - Object { + { "backgroundColor": "hsla(218, 89%, 51%, 0)", "borderColor": "hsla(218, 89%, 51%, 1)", }, @@ -1320,8 +1325,8 @@ exports[` should render empty header 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -1330,21 +1335,22 @@ exports[` should render empty header 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render empty header 1`] = ` position="absolute" right="spacing.0" style={ - Array [ - Object { + [ + { "left": 0, "position": "absolute", "right": 0, @@ -1409,8 +1415,8 @@ exports[` should render empty header 1`] = ` should render empty header 1`] = ` should render empty header 1`] = ` should render empty header 1`] = ` flexShrink={0} overflow="visible" style={ - Array [ - Object { + [ + { "flexShrink": 0, "overflow": "visible", }, @@ -1478,8 +1484,8 @@ exports[` should render empty header 1`] = ` position="relative" right="spacing.0" style={ - Array [ - Object { + [ + { "height": 8, "position": "relative", "right": 0, @@ -1503,8 +1509,8 @@ exports[` should render empty header 1`] = ` position="absolute" right="spacing.5" style={ - Array [ - Object { + [ + { "alignItems": "center", "backgroundColor": "hsla(0, 0%, 100%, 1)", "borderRadius": 9999, @@ -1541,8 +1547,8 @@ exports[` should render empty header 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignSelf": "center", }, ] @@ -1562,15 +1568,15 @@ exports[` should render empty header 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -1584,7 +1590,7 @@ exports[` should render empty header 1`] = ` should render empty header 1`] = ` d="M18.7071 6.70711C19.0976 6.31658 19.0976 5.68342 18.7071 5.29289C18.3166 4.90237 17.6834 4.90237 17.2929 5.29289L12 10.5858L6.70711 5.29289C6.31658 4.90237 5.68342 4.90237 5.29289 5.29289C4.90237 5.68342 4.90237 6.31658 5.29289 6.70711L10.5858 12L5.29289 17.2929C4.90237 17.6834 4.90237 18.3166 5.29289 18.7071C5.68342 19.0976 6.31658 19.0976 6.70711 18.7071L12 13.4142L17.2929 18.7071C17.6834 19.0976 18.3166 19.0976 18.7071 18.7071C19.0976 18.3166 19.0976 17.6834 18.7071 17.2929L13.4142 12L18.7071 6.70711Z" fill={4288851646} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/BottomSheet/__tests__/__snapshots__/BottomSheet.ssr.test.tsx.snap b/packages/blade/src/components/BottomSheet/__tests__/__snapshots__/BottomSheet.ssr.test.tsx.snap index 17a3b16ff4a..1f296787bda 100644 --- a/packages/blade/src/components/BottomSheet/__tests__/__snapshots__/BottomSheet.ssr.test.tsx.snap +++ b/packages/blade/src/components/BottomSheet/__tests__/__snapshots__/BottomSheet.ssr.test.tsx.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[` should render a BottomSheet ssr 1`] = `"
Address Details

2

Saving addresses will improve your checkout experience

BottomSheet body

"`; +exports[` should render a BottomSheet ssr 1`] = `"
"`; exports[` should render a BottomSheet ssr 2`] = `
', () => { expect(toJSON()).toMatchInlineSnapshot(` ', () => { data-blade-component="box" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", "paddingBottom": 0, "paddingLeft": 0, diff --git a/packages/blade/src/components/Box/__tests__/__snapshots__/BaseBox.native.test.tsx.snap b/packages/blade/src/components/Box/__tests__/__snapshots__/BaseBox.native.test.tsx.snap index 09e615e7ef2..6ce02fb9d23 100644 --- a/packages/blade/src/components/Box/__tests__/__snapshots__/BaseBox.native.test.tsx.snap +++ b/packages/blade/src/components/Box/__tests__/__snapshots__/BaseBox.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render BaseBox component with elevation 1`] = ` should render BaseBox component with elevation 1`] = ` elevation="highRaised" height="200px" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(220, 30%, 96%, 1)", "height": 200, "width": 200, }, - Object { + { "elevation": 26, "shadowColor": "hsla(217, 56%, 17%, 0.64)", - "shadowOffset": Object { + "shadowOffset": { "height": 18, "width": 0, }, @@ -36,6 +36,7 @@ exports[` should render BaseBox component with elevation 1`] = ` width="200px" > should render BaseBox component with elevation 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -74,7 +75,7 @@ exports[` should render BaseBox component with elevation 1`] = ` exports[` should render BaseBox component with the correct styles 1`] = ` should render BaseBox component with the correct styles 1`] position="absolute" right="0px" style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "bottom": 0, diff --git a/packages/blade/src/components/Box/__tests__/__snapshots__/BaseBox.ssr.test.tsx.snap b/packages/blade/src/components/Box/__tests__/__snapshots__/BaseBox.ssr.test.tsx.snap index 7bf28f5126e..3504bbdff8c 100644 --- a/packages/blade/src/components/Box/__tests__/__snapshots__/BaseBox.ssr.test.tsx.snap +++ b/packages/blade/src/components/Box/__tests__/__snapshots__/BaseBox.ssr.test.tsx.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[` should render BaseBox component with the correct styles 1`] = `"
"`; +exports[` should render BaseBox component with the correct styles 1`] = `"
"`; exports[` should render BaseBox component with the correct styles 2`] = `
should render Box as footer tag 1`] = `"
Footer test!
"`; +exports[` should render Box as footer tag 1`] = `"
Footer test!
"`; -exports[` should render Box component with supported styles 1`] = `"
children test!
"`; +exports[` should render Box component with supported styles 1`] = `"
children test!
"`; -exports[` should throw error for unsupport as prop 1`] = `"
"`; +exports[` should throw error for unsupport as prop 1`] = `"
"`; -exports[` should throw error for unsupport values 1`] = `"
"`; +exports[` should throw error for unsupport values 1`] = `"
"`; diff --git a/packages/blade/src/components/Box/__tests__/baseBoxStyles.native.test.ts b/packages/blade/src/components/Box/__tests__/baseBoxStyles.native.test.ts index bffb28ed884..3c085a573df 100644 --- a/packages/blade/src/components/Box/__tests__/baseBoxStyles.native.test.ts +++ b/packages/blade/src/components/Box/__tests__/baseBoxStyles.native.test.ts @@ -67,7 +67,7 @@ describe('getBaseBoxStyles', () => { }); const boxStylesWithoutUndefined = JSON.parse(JSON.stringify(boxStyles)); expect(boxStylesWithoutUndefined).toMatchInlineSnapshot(` - Object { + { "margin": "2px 12px 100%", } `); @@ -77,7 +77,7 @@ describe('getBaseBoxStyles', () => { describe('getAllMediaQueries', () => { it('should return empty object', () => { expect(getAllMediaQueries({ display: 'flex', theme: paymentLightTheme })).toMatchInlineSnapshot( - `Object {}`, + `{}`, ); }); }); @@ -92,7 +92,7 @@ describe('getAllProps', () => { }; expect(removeUndefinedValues(getAllProps(baseBoxProps))).toMatchInlineSnapshot(` - Object { + { "display": "flex", "padding": "20px", } diff --git a/packages/blade/src/components/Box/__tests__/baseBoxStyles.test.ts b/packages/blade/src/components/Box/__tests__/baseBoxStyles.test.ts index c0e3e062a13..2db0c00d9eb 100644 --- a/packages/blade/src/components/Box/__tests__/baseBoxStyles.test.ts +++ b/packages/blade/src/components/Box/__tests__/baseBoxStyles.test.ts @@ -56,7 +56,7 @@ describe('getBaseBoxStyles', () => { const boxStyles = getBaseBoxStyles({ backgroundColor: 'red', theme: paymentLightTheme }); const boxStylesWithoutUndefined = JSON.parse(JSON.stringify(boxStyles)); expect(boxStylesWithoutUndefined).toMatchInlineSnapshot(` - Object { + { "backgroundColor": "red", } `); @@ -67,6 +67,6 @@ describe('getBaseBoxStyles', () => { theme: paymentLightTheme, }); const boxStylesWithoutUndefined = JSON.parse(JSON.stringify(boxStyles)); - expect(boxStylesWithoutUndefined).toMatchInlineSnapshot(`Object {}`); + expect(boxStylesWithoutUndefined).toMatchInlineSnapshot(`{}`); }); }); diff --git a/packages/blade/src/components/Box/__tests__/baseBoxStyles.web.test.ts b/packages/blade/src/components/Box/__tests__/baseBoxStyles.web.test.ts index 0c35461a5b8..98dceb67695 100644 --- a/packages/blade/src/components/Box/__tests__/baseBoxStyles.web.test.ts +++ b/packages/blade/src/components/Box/__tests__/baseBoxStyles.web.test.ts @@ -80,19 +80,19 @@ describe('getBaseBoxStyles', () => { }); const boxStylesWithoutUndefined = JSON.parse(JSON.stringify(boxStyles)); expect(boxStylesWithoutUndefined).toMatchInlineSnapshot(` - Object { - "@media screen and (min-width: 1200px)": Object { - "margin": "auto", - }, - "@media screen and (min-width: 480px)": Object { - "margin": "2px 12px 100%", - }, - "@media screen and (min-width: 768px)": Object { - "margin": "22px", - }, - "margin": "2px", - } - `); + { + "@media screen and (min-width: 1200px)": { + "margin": "auto", + }, + "@media screen and (min-width: 480px)": { + "margin": "2px 12px 100%", + }, + "@media screen and (min-width: 768px)": { + "margin": "22px", + }, + "margin": "2px", + } + `); }); }); @@ -100,7 +100,7 @@ describe('getAllMediaQueries', () => { it('should return empty object', () => { expect( removeUndefinedValues(getAllMediaQueries({ display: 'block', theme: paymentLightTheme })), - ).toMatchInlineSnapshot(`Object {}`); + ).toMatchInlineSnapshot(`{}`); }); it('should return the media queries', () => { @@ -112,11 +112,11 @@ describe('getAllMediaQueries', () => { }), ), ).toMatchInlineSnapshot(` - Object { - "@media screen and (min-width: 1200px)": Object { + { + "@media screen and (min-width: 1200px)": { "display": "flex", }, - "@media screen and (min-width: 768px)": Object { + "@media screen and (min-width: 768px)": { "display": "none", }, } @@ -134,20 +134,20 @@ describe('getAllProps', () => { }; expect(removeUndefinedValues(getAllProps(baseBoxProps))).toMatchInlineSnapshot(` - Object { + { "display": "block", "padding": "2px", } `); expect(removeUndefinedValues(getAllProps(baseBoxProps, 'm'))).toMatchInlineSnapshot(` - Object { + { "margin": "2px", } `); expect(removeUndefinedValues(getAllProps(baseBoxProps, 'l'))).toMatchInlineSnapshot(` - Object { + { "padding": "20px", } `); diff --git a/packages/blade/src/components/Box/__tests__/styledProps.native.test.tsx b/packages/blade/src/components/Box/__tests__/styledProps.native.test.tsx index bfa00579ff1..f648cd509ad 100644 --- a/packages/blade/src/components/Box/__tests__/styledProps.native.test.tsx +++ b/packages/blade/src/components/Box/__tests__/styledProps.native.test.tsx @@ -31,7 +31,7 @@ describe('styledProps with getStyledProps', () => { expect(toJSON()).toMatchInlineSnapshot(` { { expect(toJSON()).toMatchInlineSnapshot(` { it('should ignore props that are not styledProps', () => { expect(getStyledProps({ marginTop: 'spacing.2', padding: 'spacing.1' })).toMatchInlineSnapshot(` - Object { + { "marginTop": "spacing.2", } `); @@ -13,7 +13,7 @@ describe('getStyledProps', () => { // This test is meant like an alert if we end up adding some prop unexpectedly. // Do update the snapshot if adding new prop was intentional expect(makeStyledProps({})).toMatchInlineSnapshot(` - Object { + { "alignSelf": undefined, "bottom": undefined, "display": undefined, diff --git a/packages/blade/src/components/Box/__tests__/useMemoizedStyles.web.test.tsx b/packages/blade/src/components/Box/__tests__/useMemoizedStyles.web.test.tsx index 33c0ae03e15..01220a229ef 100644 --- a/packages/blade/src/components/Box/__tests__/useMemoizedStyles.web.test.tsx +++ b/packages/blade/src/components/Box/__tests__/useMemoizedStyles.web.test.tsx @@ -25,9 +25,7 @@ describe('getDependencyProp', () => { theme: { name: 'paymentTheme', something: 'something' }, colorScheme: 'light', }), - ).toMatchInlineSnapshot( - `"{\\"paddingLeft\\":\\"12px\\",\\"display\\":\\"block\\"}-paymentTheme-light"`, - ); + ).toMatchInlineSnapshot(`"{"paddingLeft":"12px","display":"block"}-paymentTheme-light"`); }); }); @@ -46,7 +44,7 @@ describe('useMemoizedStyles', () => { ); expect(JSON.stringify(result.current)).toMatchInlineSnapshot( - `"{\\"padding\\":\\"48px\\",\\"margin\\":\\"2px 4px\\"}"`, + `"{"padding":"48px","margin":"2px 4px"}"`, ); }); }); diff --git a/packages/blade/src/components/Button/BaseButton/__tests__/__snapshots__/BaseButton.native.test.tsx.snap b/packages/blade/src/components/Button/BaseButton/__tests__/__snapshots__/BaseButton.native.test.tsx.snap index accb3f1ae8d..f35ef458f8f 100644 --- a/packages/blade/src/components/Button/BaseButton/__tests__/__snapshots__/BaseButton.native.test.tsx.snap +++ b/packages/blade/src/components/Button/BaseButton/__tests__/__snapshots__/BaseButton.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render button with default properties 1`] = ` should render button with default properties 1`] = ` should render button with default properties 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 1)", @@ -71,7 +71,7 @@ exports[` should render button with default properties 1`] = ` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(218, 89%, 51%, 1)", "borderColor": "hsla(218, 89%, 51%, 1)", }, @@ -87,8 +87,8 @@ exports[` should render button with default properties 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -97,21 +97,22 @@ exports[` should render button with default properties 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render button with default properties 1`] = ` exports[` should render button with full width 1`] = ` should render button with full width 1`] = ` should render button with full width 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 1)", @@ -211,7 +212,7 @@ exports[` should render button with full width 1`] = ` "textDecorationStyle": "solid", "width": "100%", }, - Object { + { "backgroundColor": "hsla(218, 89%, 51%, 1)", "borderColor": "hsla(218, 89%, 51%, 1)", }, @@ -227,8 +228,8 @@ exports[` should render button with full width 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -237,21 +238,22 @@ exports[` should render button with full width 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render button with full width 1`] = ` exports[` should render button with icon with default iconPosition 1`] = ` should render button with icon with default iconPosition should render button with icon with default iconPosition onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 1)", @@ -351,7 +353,7 @@ exports[` should render button with icon with default iconPosition "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(218, 89%, 51%, 1)", "borderColor": "hsla(218, 89%, 51%, 1)", }, @@ -367,8 +369,8 @@ exports[` should render button with icon with default iconPosition isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -377,7 +379,7 @@ exports[` should render button with icon with default iconPosition "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] @@ -389,8 +391,8 @@ exports[` should render button with icon with default iconPosition display="flex" justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "justifyContent": "center", @@ -413,15 +415,15 @@ exports[` should render button with icon with default iconPosition minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 16, "width": 16, @@ -435,7 +437,7 @@ exports[` should render button with icon with default iconPosition should render button with icon with default iconPosition fill={4294967295} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -456,14 +458,15 @@ exports[` should render button with icon with default iconPosition should render button with icon with default iconPosition exports[` should render button with icon with left iconPosition 1`] = ` should render button with icon with left iconPosition 1` should render button with icon with left iconPosition 1` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 1)", @@ -563,7 +566,7 @@ exports[` should render button with icon with left iconPosition 1` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(218, 89%, 51%, 1)", "borderColor": "hsla(218, 89%, 51%, 1)", }, @@ -579,8 +582,8 @@ exports[` should render button with icon with left iconPosition 1` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -589,7 +592,7 @@ exports[` should render button with icon with left iconPosition 1` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] @@ -601,8 +604,8 @@ exports[` should render button with icon with left iconPosition 1` display="flex" justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "justifyContent": "center", @@ -625,15 +628,15 @@ exports[` should render button with icon with left iconPosition 1` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 16, "width": 16, @@ -647,7 +650,7 @@ exports[` should render button with icon with left iconPosition 1` should render button with icon with left iconPosition 1` fill={4294967295} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -668,14 +671,15 @@ exports[` should render button with icon with left iconPosition 1` should render button with icon with left iconPosition 1` exports[` should render button with icon with right iconPosition 1`] = ` should render button with icon with right iconPosition 1 should render button with icon with right iconPosition 1 onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 1)", @@ -775,7 +779,7 @@ exports[` should render button with icon with right iconPosition 1 "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(218, 89%, 51%, 1)", "borderColor": "hsla(218, 89%, 51%, 1)", }, @@ -791,8 +795,8 @@ exports[` should render button with icon with right iconPosition 1 isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -801,21 +805,22 @@ exports[` should render button with icon with right iconPosition 1 "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render button with icon with right iconPosition 1 display="flex" justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "justifyContent": "center", @@ -869,15 +874,15 @@ exports[` should render button with icon with right iconPosition 1 minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 16, "width": 16, @@ -891,7 +896,7 @@ exports[` should render button with icon with right iconPosition 1 should render button with icon with right iconPosition 1 fill={4294967295} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -919,7 +924,7 @@ exports[` should render button with icon with right iconPosition 1 exports[` should render button with icon without text 1`] = ` should render button with icon without text 1`] = ` should render button with icon without text 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 1)", @@ -987,7 +992,7 @@ exports[` should render button with icon without text 1`] = ` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(218, 89%, 51%, 1)", "borderColor": "hsla(218, 89%, 51%, 1)", }, @@ -1003,8 +1008,8 @@ exports[` should render button with icon without text 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -1013,7 +1018,7 @@ exports[` should render button with icon without text 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] @@ -1025,8 +1030,8 @@ exports[` should render button with icon without text 1`] = ` display="flex" justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "justifyContent": "center", @@ -1048,15 +1053,15 @@ exports[` should render button with icon without text 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -1070,7 +1075,7 @@ exports[` should render button with icon without text 1`] = ` should render button with icon without text 1`] = ` fill={4294967295} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -1098,7 +1103,7 @@ exports[` should render button with icon without text 1`] = ` exports[` should render disabled button 1`] = ` should render disabled button 1`] = ` should render disabled button 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(216, 19%, 89%, 1)", @@ -1166,7 +1171,7 @@ exports[` should render disabled button 1`] = ` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(216, 19%, 89%, 1)", "borderColor": "hsla(216, 19%, 89%, 1)", }, @@ -1182,8 +1187,8 @@ exports[` should render disabled button 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -1192,21 +1197,22 @@ exports[` should render disabled button 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render disabled button 1`] = ` exports[` should render disabled information intent high contrast button 1`] = ` should render disabled information intent high contrast should render disabled information intent high contrast onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(193, 100%, 35%, 1)", @@ -1306,7 +1312,7 @@ exports[` should render disabled information intent high contrast "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(193, 100%, 35%, 1)", "borderColor": "hsla(187, 68%, 52%, 1)", }, @@ -1322,8 +1328,8 @@ exports[` should render disabled information intent high contrast isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -1332,21 +1338,22 @@ exports[` should render disabled information intent high contrast "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render disabled information intent high contrast exports[` should render disabled information intent low contrast button 1`] = ` should render disabled information intent low contrast b should render disabled information intent low contrast b onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(193, 100%, 35%, 0.09)", @@ -1446,7 +1453,7 @@ exports[` should render disabled information intent low contrast b "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(193, 100%, 35%, 0.09)", "borderColor": "hsla(193, 100%, 35%, 0.32)", }, @@ -1462,8 +1469,8 @@ exports[` should render disabled information intent low contrast b isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -1472,21 +1479,22 @@ exports[` should render disabled information intent low contrast b "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render disabled information intent low contrast b exports[` should render disabled negative intent high contrast button 1`] = ` should render disabled negative intent high contrast but should render disabled negative intent high contrast but onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(8, 73%, 47%, 1)", @@ -1586,7 +1594,7 @@ exports[` should render disabled negative intent high contrast but "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(8, 73%, 47%, 1)", "borderColor": "hsla(8, 99%, 65%, 1)", }, @@ -1602,8 +1610,8 @@ exports[` should render disabled negative intent high contrast but isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -1612,21 +1620,22 @@ exports[` should render disabled negative intent high contrast but "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render disabled negative intent high contrast but exports[` should render disabled negative intent low contrast button 1`] = ` should render disabled negative intent low contrast butt should render disabled negative intent low contrast butt onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(9, 91%, 56%, 0.09)", @@ -1726,7 +1735,7 @@ exports[` should render disabled negative intent low contrast butt "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(9, 91%, 56%, 0.09)", "borderColor": "hsla(9, 91%, 56%, 0.32)", }, @@ -1742,8 +1751,8 @@ exports[` should render disabled negative intent low contrast butt isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -1752,21 +1761,22 @@ exports[` should render disabled negative intent low contrast butt "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render disabled negative intent low contrast butt exports[` should render disabled neutral intent high contrast button 1`] = ` should render disabled neutral intent high contrast butt should render disabled neutral intent high contrast butt onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(216, 33%, 29%, 1)", @@ -1866,7 +1876,7 @@ exports[` should render disabled neutral intent high contrast butt "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(216, 33%, 29%, 1)", "borderColor": "hsla(216, 15%, 54%, 1)", }, @@ -1882,8 +1892,8 @@ exports[` should render disabled neutral intent high contrast butt isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -1892,21 +1902,22 @@ exports[` should render disabled neutral intent high contrast butt "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render disabled neutral intent high contrast butt exports[` should render disabled neutral intent low contrast button 1`] = ` should render disabled neutral intent low contrast butto should render disabled neutral intent low contrast butto onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(216, 15%, 54%, 0.09)", @@ -2006,7 +2017,7 @@ exports[` should render disabled neutral intent low contrast butto "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderColor": "hsla(216, 15%, 54%, 0.32)", }, @@ -2022,8 +2033,8 @@ exports[` should render disabled neutral intent low contrast butto isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -2032,21 +2043,22 @@ exports[` should render disabled neutral intent low contrast butto "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render disabled neutral intent low contrast butto exports[` should render disabled notice intent high contrast button 1`] = ` should render disabled notice intent high contrast butto should render disabled notice intent high contrast butto onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(38, 97%, 38%, 1)", @@ -2146,7 +2158,7 @@ exports[` should render disabled notice intent high contrast butto "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(38, 97%, 38%, 1)", "borderColor": "hsla(35, 84%, 54%, 1)", }, @@ -2162,8 +2174,8 @@ exports[` should render disabled notice intent high contrast butto isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -2172,21 +2184,22 @@ exports[` should render disabled notice intent high contrast butto "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render disabled notice intent high contrast butto exports[` should render disabled notice intent low contrast button 1`] = ` should render disabled notice intent low contrast button should render disabled notice intent low contrast button onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(36, 100%, 44%, 0.09)", @@ -2286,7 +2299,7 @@ exports[` should render disabled notice intent low contrast button "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(36, 100%, 44%, 0.09)", "borderColor": "hsla(36, 100%, 44%, 0.32)", }, @@ -2302,8 +2315,8 @@ exports[` should render disabled notice intent low contrast button isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -2312,21 +2325,22 @@ exports[` should render disabled notice intent low contrast button "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render disabled notice intent low contrast button exports[` should render disabled positive intent high contrast button 1`] = ` should render disabled positive intent high contrast but should render disabled positive intent high contrast but onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(160, 100%, 26%, 1)", @@ -2426,7 +2440,7 @@ exports[` should render disabled positive intent high contrast but "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(160, 100%, 26%, 1)", "borderColor": "hsla(149, 99%, 35%, 1)", }, @@ -2442,8 +2456,8 @@ exports[` should render disabled positive intent high contrast but isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -2452,21 +2466,22 @@ exports[` should render disabled positive intent high contrast but "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render disabled positive intent high contrast but exports[` should render disabled positive intent low contrast button 1`] = ` should render disabled positive intent low contrast butt should render disabled positive intent low contrast butt onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(155, 100%, 31%, 0.09)", @@ -2566,7 +2581,7 @@ exports[` should render disabled positive intent low contrast butt "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(155, 100%, 31%, 0.09)", "borderColor": "hsla(155, 100%, 31%, 0.32)", }, @@ -2582,8 +2597,8 @@ exports[` should render disabled positive intent low contrast butt isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -2592,21 +2607,22 @@ exports[` should render disabled positive intent low contrast butt "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render disabled positive intent low contrast butt exports[` should render disabled secondary variant button 1`] = ` should render disabled secondary variant button 1`] = ` should render disabled secondary variant button 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(216, 44%, 23%, 0)", @@ -2706,7 +2722,7 @@ exports[` should render disabled secondary variant button 1`] = ` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(216, 44%, 23%, 0)", "borderColor": "hsla(218, 19%, 81%, 1)", }, @@ -2722,8 +2738,8 @@ exports[` should render disabled secondary variant button 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -2732,21 +2748,22 @@ exports[` should render disabled secondary variant button 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render disabled secondary variant button 1`] = ` exports[` should render disabled tertiary variant button 1`] = ` should render disabled tertiary variant button 1`] = ` should render disabled tertiary variant button 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(0, 0%, 100%, 1)", @@ -2846,7 +2863,7 @@ exports[` should render disabled tertiary variant button 1`] = ` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(0, 0%, 100%, 1)", "borderColor": "hsla(216, 19%, 89%, 1)", }, @@ -2862,8 +2879,8 @@ exports[` should render disabled tertiary variant button 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -2872,21 +2889,22 @@ exports[` should render disabled tertiary variant button 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render disabled tertiary variant button 1`] = ` exports[` should render information intent high contrast button 1`] = ` should render information intent high contrast button 1` should render information intent high contrast button 1` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(193, 100%, 35%, 1)", @@ -2986,7 +3004,7 @@ exports[` should render information intent high contrast button 1` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(193, 100%, 35%, 1)", "borderColor": "hsla(180, 100%, 97%, 1)", }, @@ -3002,8 +3020,8 @@ exports[` should render information intent high contrast button 1` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -3012,21 +3030,22 @@ exports[` should render information intent high contrast button 1` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render information intent high contrast button 1` exports[` should render information intent low contrast button 1`] = ` should render information intent low contrast button 1`] should render information intent low contrast button 1`] onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(193, 100%, 35%, 0.09)", @@ -3126,7 +3145,7 @@ exports[` should render information intent low contrast button 1`] "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(193, 100%, 35%, 0.09)", "borderColor": "hsla(193, 100%, 35%, 0.32)", }, @@ -3142,8 +3161,8 @@ exports[` should render information intent low contrast button 1`] isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -3152,21 +3171,22 @@ exports[` should render information intent low contrast button 1`] "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render information intent low contrast button 1`] exports[` should render large size button 1`] = ` should render large size button 1`] = ` should render large size button 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 1)", @@ -3266,7 +3286,7 @@ exports[` should render large size button 1`] = ` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(218, 89%, 51%, 1)", "borderColor": "hsla(218, 89%, 51%, 1)", }, @@ -3282,8 +3302,8 @@ exports[` should render large size button 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -3292,21 +3312,22 @@ exports[` should render large size button 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render large size button 1`] = ` exports[` should render loading button 1`] = ` should render loading button 1`] = ` should render loading button 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(216, 19%, 89%, 1)", @@ -3406,7 +3427,7 @@ exports[` should render loading button 1`] = ` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(216, 19%, 89%, 1)", "borderColor": "hsla(216, 19%, 89%, 1)", }, @@ -3424,8 +3445,8 @@ exports[` should render loading button 1`] = ` position="absolute" right="0px" style={ - Array [ - Object { + [ + { "alignItems": "center", "bottom": 0, "display": "flex", @@ -3442,21 +3463,22 @@ exports[` should render loading button 1`] = ` should render loading button 1`] = ` alignSelf="center" data-blade-component="base-box" style={ - Array [ - Object { + [ + { "alignSelf": "center", }, ] @@ -3477,9 +3499,9 @@ exports[` should render loading button 1`] = ` > should render loading button 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -3522,7 +3544,7 @@ exports[` should render loading button 1`] = ` should render loading button 1`] = ` fill={4284378759} fillOpacity={0.2} propList={ - Array [ + [ "fill", "fillOpacity", ] @@ -3542,7 +3564,7 @@ exports[` should render loading button 1`] = ` d="M24 12C24 13.8937 23.5518 15.7606 22.6921 17.4479C21.8324 19.1352 20.5855 20.5951 19.0534 21.7082C17.5214 22.8213 15.7476 23.556 13.8772 23.8523C12.0068 24.1485 10.0928 23.9979 8.29181 23.4127L9.21886 20.5595C10.5696 20.9984 12.0051 21.1114 13.4079 20.8892C14.8107 20.667 16.141 20.116 17.2901 19.2812C18.4391 18.4463 19.3743 17.3514 20.0191 16.0859C20.6639 14.8204 21 13.4203 21 12H24Z" fill={4284378759} propList={ - Array [ + [ "fill", ] } @@ -3551,7 +3573,7 @@ exports[` should render loading button 1`] = ` d="M-1.33514e-05 12C-1.33514e-05 10.1063 0.448176 8.23944 1.30791 6.55211C2.16764 4.86479 3.41451 3.4049 4.94656 2.2918C6.47862 1.17869 8.25236 0.443983 10.1228 0.147739C11.9932 -0.148504 13.9072 0.00212896 15.7082 0.587322L14.7811 3.44049C13.4304 3.0016 11.9949 2.88862 10.5921 3.11081C9.18927 3.33299 7.85896 3.88402 6.70992 4.71885C5.56088 5.55367 4.62573 6.64859 3.98093 7.91409C3.33613 9.17958 2.99999 10.5797 2.99999 12H-1.33514e-05Z" fill={4284378759} propList={ - Array [ + [ "fill", ] } @@ -3571,8 +3593,8 @@ exports[` should render loading button 1`] = ` isHidden={true} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -3581,21 +3603,22 @@ exports[` should render loading button 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 0, }, ] } > should render loading button 1`] = ` exports[` should render medium size button 1`] = ` should render medium size button 1`] = ` should render medium size button 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 1)", @@ -3695,7 +3718,7 @@ exports[` should render medium size button 1`] = ` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(218, 89%, 51%, 1)", "borderColor": "hsla(218, 89%, 51%, 1)", }, @@ -3711,8 +3734,8 @@ exports[` should render medium size button 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -3721,21 +3744,22 @@ exports[` should render medium size button 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render medium size button 1`] = ` exports[` should render negative intent high contrast button 1`] = ` should render negative intent high contrast button 1`] = should render negative intent high contrast button 1`] = onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(8, 73%, 47%, 1)", @@ -3835,7 +3859,7 @@ exports[` should render negative intent high contrast button 1`] = "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(8, 73%, 47%, 1)", "borderColor": "hsla(0, 100%, 97%, 1)", }, @@ -3851,8 +3875,8 @@ exports[` should render negative intent high contrast button 1`] = isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -3861,21 +3885,22 @@ exports[` should render negative intent high contrast button 1`] = "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render negative intent high contrast button 1`] = exports[` should render negative intent low contrast button 1`] = ` should render negative intent low contrast button 1`] = should render negative intent low contrast button 1`] = onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(9, 91%, 56%, 0.09)", @@ -3975,7 +4000,7 @@ exports[` should render negative intent low contrast button 1`] = "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(9, 91%, 56%, 0.09)", "borderColor": "hsla(9, 91%, 56%, 0.32)", }, @@ -3991,8 +4016,8 @@ exports[` should render negative intent low contrast button 1`] = isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -4001,21 +4026,22 @@ exports[` should render negative intent low contrast button 1`] = "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render negative intent low contrast button 1`] = exports[` should render neutral intent high contrast button 1`] = ` should render neutral intent high contrast button 1`] = should render neutral intent high contrast button 1`] = onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(216, 33%, 29%, 1)", @@ -4115,7 +4141,7 @@ exports[` should render neutral intent high contrast button 1`] = "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(216, 33%, 29%, 1)", "borderColor": "hsla(214, 18%, 69%, 1)", }, @@ -4131,8 +4157,8 @@ exports[` should render neutral intent high contrast button 1`] = isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -4141,21 +4167,22 @@ exports[` should render neutral intent high contrast button 1`] = "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render neutral intent high contrast button 1`] = exports[` should render neutral intent low contrast button 1`] = ` should render neutral intent low contrast button 1`] = ` should render neutral intent low contrast button 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(216, 15%, 54%, 0.09)", @@ -4255,7 +4282,7 @@ exports[` should render neutral intent low contrast button 1`] = ` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderColor": "hsla(216, 15%, 54%, 0.32)", }, @@ -4271,8 +4298,8 @@ exports[` should render neutral intent low contrast button 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -4281,21 +4308,22 @@ exports[` should render neutral intent low contrast button 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render neutral intent low contrast button 1`] = ` exports[` should render notice intent high contrast button 1`] = ` should render notice intent high contrast button 1`] = ` should render notice intent high contrast button 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(38, 97%, 38%, 1)", @@ -4395,7 +4423,7 @@ exports[` should render notice intent high contrast button 1`] = ` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(38, 97%, 38%, 1)", "borderColor": "hsla(32, 100%, 94%, 1)", }, @@ -4411,8 +4439,8 @@ exports[` should render notice intent high contrast button 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -4421,21 +4449,22 @@ exports[` should render notice intent high contrast button 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render notice intent high contrast button 1`] = ` exports[` should render notice intent low contrast button 1`] = ` should render notice intent low contrast button 1`] = ` should render notice intent low contrast button 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(36, 100%, 44%, 0.09)", @@ -4535,7 +4564,7 @@ exports[` should render notice intent low contrast button 1`] = ` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(36, 100%, 44%, 0.09)", "borderColor": "hsla(36, 100%, 44%, 0.32)", }, @@ -4551,8 +4580,8 @@ exports[` should render notice intent low contrast button 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -4561,21 +4590,22 @@ exports[` should render notice intent low contrast button 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render notice intent low contrast button 1`] = ` exports[` should render positive intent high contrast button 1`] = ` should render positive intent high contrast button 1`] = should render positive intent high contrast button 1`] = onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(160, 100%, 26%, 1)", @@ -4675,7 +4705,7 @@ exports[` should render positive intent high contrast button 1`] = "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(160, 100%, 26%, 1)", "borderColor": "hsla(107, 100%, 96%, 1)", }, @@ -4691,8 +4721,8 @@ exports[` should render positive intent high contrast button 1`] = isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -4701,21 +4731,22 @@ exports[` should render positive intent high contrast button 1`] = "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render positive intent high contrast button 1`] = exports[` should render positive intent low contrast button 1`] = ` should render positive intent low contrast button 1`] = should render positive intent low contrast button 1`] = onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(155, 100%, 31%, 0.09)", @@ -4815,7 +4846,7 @@ exports[` should render positive intent low contrast button 1`] = "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(155, 100%, 31%, 0.09)", "borderColor": "hsla(155, 100%, 31%, 0.32)", }, @@ -4831,8 +4862,8 @@ exports[` should render positive intent low contrast button 1`] = isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -4841,21 +4872,22 @@ exports[` should render positive intent low contrast button 1`] = "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render positive intent low contrast button 1`] = exports[` should render secondary variant button 1`] = ` should render secondary variant button 1`] = ` should render secondary variant button 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 0)", @@ -4955,7 +4987,7 @@ exports[` should render secondary variant button 1`] = ` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(218, 89%, 51%, 0)", "borderColor": "hsla(218, 89%, 51%, 1)", }, @@ -4971,8 +5003,8 @@ exports[` should render secondary variant button 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -4981,21 +5013,22 @@ exports[` should render secondary variant button 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render secondary variant button 1`] = ` exports[` should render small size button 1`] = ` should render small size button 1`] = ` should render small size button 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 1)", @@ -5095,7 +5128,7 @@ exports[` should render small size button 1`] = ` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(218, 89%, 51%, 1)", "borderColor": "hsla(218, 89%, 51%, 1)", }, @@ -5111,8 +5144,8 @@ exports[` should render small size button 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -5121,21 +5154,22 @@ exports[` should render small size button 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render small size button 1`] = ` exports[` should render tertiary variant button 1`] = ` should render tertiary variant button 1`] = ` should render tertiary variant button 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(0, 0%, 100%, 1)", @@ -5235,7 +5269,7 @@ exports[` should render tertiary variant button 1`] = ` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(0, 0%, 100%, 1)", "borderColor": "hsla(216, 19%, 89%, 1)", }, @@ -5251,8 +5285,8 @@ exports[` should render tertiary variant button 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -5261,21 +5295,22 @@ exports[` should render tertiary variant button 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render tertiary variant button 1`] = ` exports[` should render xsmall size button 1`] = ` should render xsmall size button 1`] = ` should render xsmall size button 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 1)", @@ -5375,7 +5410,7 @@ exports[` should render xsmall size button 1`] = ` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(218, 89%, 51%, 1)", "borderColor": "hsla(218, 89%, 51%, 1)", }, @@ -5391,8 +5426,8 @@ exports[` should render xsmall size button 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -5401,21 +5436,22 @@ exports[` should render xsmall size button 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render button with icon with left iconPosition 1`] = `"
"`; +exports[` should render button with icon with left iconPosition 1`] = `"
"`; exports[` should render button with icon with left iconPosition 2`] = `
should render button with default properties 1`] = ` should render button with default properties 1`] = ` should render button with default properties 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 1)", @@ -71,7 +71,7 @@ exports[`
"`; +exports[`
"`; exports[`
"`; +exports[` should render 1`] = `"
"`; exports[` should render 2`] = `
should render a Card with Footer 1`] = ` should render a Card with Footer 1`] = ` @@ -21,8 +21,8 @@ exports[` should render a Card with Footer 1`] = ` data-blade-component="base-box" elevation="lowRaised" style={ - Array [ - Object { + [ + { "borderRadius": 4, "paddingBottom": 24, "paddingLeft": 24, @@ -30,18 +30,18 @@ exports[` should render a Card with Footer 1`] = ` "paddingTop": 24, "textAlign": "left", }, - Object { + { "elevation": 4, "shadowColor": "hsla(217, 56%, 17%, 0.64)", - "shadowOffset": Object { + "shadowOffset": { "height": 3, "width": 0, }, "shadowOpacity": 0.12, "shadowRadius": 2, }, - Array [ - Object { + [ + { "backgroundColor": "hsla(0, 0%, 100%, 1)", "display": "flex", "flexDirection": "column", @@ -56,12 +56,13 @@ exports[` should render a Card with Footer 1`] = ` should render a Card with Footer 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -97,8 +98,8 @@ exports[` should render a Card with Footer 1`] = ` should render a Card with Footer 1`] = ` should render a Card with Footer 1`] = ` dividerStyle="solid" isDividerHorizontal={true} style={ - Array [ - Object { + [ + { "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderStyle": "solid", "borderWidth": 0, }, - Object { + { "borderBottomStyle": "solid", "borderBottomWidth": 1, "flexGrow": 1, @@ -144,8 +145,8 @@ exports[` should render a Card with Footer 1`] = ` flexDirection="column" justifyContent="space-between" style={ - Array [ - Object { + [ + { "alignItems": "stretch", "display": "flex", "flexDirection": "column", @@ -158,8 +159,8 @@ exports[` should render a Card with Footer 1`] = ` should render a Card with Footer 1`] = ` textAlign="left" > should render a Card with Footer 1`] = ` fontWeight="bold" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -199,6 +201,7 @@ exports[` should render a Card with Footer 1`] = ` Card Header should render a Card with Footer 1`] = ` fontWeight="regular" lineHeight={50} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -237,8 +240,8 @@ exports[` should render a Card with Footer 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignSelf": "auto", "display": "flex", "flexDirection": "row", @@ -252,8 +255,8 @@ exports[` should render a Card with Footer 1`] = ` data-blade-component="base-box" flexGrow={1} style={ - Array [ - Object { + [ + { "flexGrow": 1, }, ] @@ -262,7 +265,7 @@ exports[` should render a Card with Footer 1`] = ` should render a Card with Footer 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 0)", @@ -322,7 +325,7 @@ exports[` should render a Card with Footer 1`] = ` "textDecorationStyle": "solid", "width": "100%", }, - Object { + { "backgroundColor": "hsla(218, 89%, 51%, 0)", "borderColor": "hsla(218, 89%, 51%, 1)", }, @@ -338,8 +341,8 @@ exports[` should render a Card with Footer 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -348,21 +351,22 @@ exports[` should render a Card with Footer 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render a Card with Footer 1`] = ` should render a Card with Footer 1`] = ` data-blade-component="base-box" flexGrow={1} style={ - Array [ - Object { + [ + { "flexGrow": 1, }, ] @@ -413,7 +417,7 @@ exports[` should render a Card with Footer 1`] = ` should render a Card with Footer 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 1)", @@ -473,7 +477,7 @@ exports[` should render a Card with Footer 1`] = ` "textDecorationStyle": "solid", "width": "100%", }, - Object { + { "backgroundColor": "hsla(218, 89%, 51%, 1)", "borderColor": "hsla(218, 89%, 51%, 1)", }, @@ -489,8 +493,8 @@ exports[` should render a Card with Footer 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -499,21 +503,22 @@ exports[` should render a Card with Footer 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render a Card with Footer 1`] = ` exports[` should render a Card with Header 1`] = ` should render a Card with Header 1`] = ` @@ -569,8 +574,8 @@ exports[` should render a Card with Header 1`] = ` data-blade-component="base-box" elevation="lowRaised" style={ - Array [ - Object { + [ + { "borderRadius": 4, "paddingBottom": 24, "paddingLeft": 24, @@ -578,18 +583,18 @@ exports[` should render a Card with Header 1`] = ` "paddingTop": 24, "textAlign": "left", }, - Object { + { "elevation": 4, "shadowColor": "hsla(217, 56%, 17%, 0.64)", - "shadowOffset": Object { + "shadowOffset": { "height": 3, "width": 0, }, "shadowOpacity": 0.12, "shadowRadius": 2, }, - Array [ - Object { + [ + { "backgroundColor": "hsla(0, 0%, 100%, 1)", "display": "flex", "flexDirection": "column", @@ -604,8 +609,8 @@ exports[` should render a Card with Header 1`] = ` should render a Card with Header 1`] = ` flexDirection="row" justifyContent="space-between" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "justifyContent": "space-between", @@ -632,8 +637,8 @@ exports[` should render a Card with Header 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "display": "flex", "flexBasis": 0, "flexDirection": "row", @@ -648,8 +653,8 @@ exports[` should render a Card with Header 1`] = ` data-blade-component="base-box" display="flex" style={ - Array [ - Object { + [ + { "alignSelf": "center", "display": "flex", "marginRight": 8, @@ -671,15 +676,15 @@ exports[` should render a Card with Header 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 24, "width": 24, @@ -693,7 +698,7 @@ exports[` should render a Card with Header 1`] = ` should render a Card with Header 1`] = ` d="M12 11C12.5523 11 13 11.4477 13 12V16C13 16.5523 12.5523 17 12 17C11.4477 17 11 16.5523 11 16V12C11 11.4477 11.4477 11 12 11Z" fill={4279445060} propList={ - Array [ + [ "fill", ] } @@ -711,7 +716,7 @@ exports[` should render a Card with Header 1`] = ` d="M12 7C11.4477 7 11 7.44772 11 8C11 8.55228 11.4477 9 12 9H12.01C12.5623 9 13.01 8.55228 13.01 8C13.01 7.44772 12.5623 7 12.01 7H12Z" fill={4279445060} propList={ - Array [ + [ "fill", ] } @@ -722,7 +727,7 @@ exports[` should render a Card with Header 1`] = ` fill={4279445060} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -734,8 +739,8 @@ exports[` should render a Card with Header 1`] = ` should render a Card with Header 1`] = ` flexDirection="row" flexWrap="wrap" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -760,6 +765,7 @@ exports[` should render a Card with Header 1`] = ` > should render a Card with Header 1`] = ` fontWeight="bold" lineHeight={300} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 16, @@ -794,8 +800,8 @@ exports[` should render a Card with Header 1`] = ` should render a Card with Header 1`] = ` data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -818,11 +824,11 @@ exports[` should render a Card with Header 1`] = ` platform="onMobile" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderRadius": 9999, @@ -841,8 +847,8 @@ exports[` should render a Card with Header 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -857,6 +863,7 @@ exports[` should render a Card with Header 1`] = ` } > should render a Card with Header 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -897,6 +904,7 @@ exports[` should render a Card with Header 1`] = ` should render a Card with Header 1`] = ` fontWeight="regular" lineHeight={50} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -936,8 +944,8 @@ exports[` should render a Card with Header 1`] = ` alignSelf="center" data-blade-component="base-box" style={ - Array [ - Object { + [ + { "alignSelf": "center", }, ] @@ -947,8 +955,8 @@ exports[` should render a Card with Header 1`] = ` data-blade-component="badge" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -959,12 +967,12 @@ exports[` should render a Card with Header 1`] = ` data-blade-component="base-box" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "textAlign": "left", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderRadius": 9999, @@ -983,8 +991,8 @@ exports[` should render a Card with Header 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -999,6 +1007,7 @@ exports[` should render a Card with Header 1`] = ` } > should render a Card with Header 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -1044,13 +1053,13 @@ exports[` should render a Card with Header 1`] = ` dividerStyle="solid" isDividerHorizontal={true} style={ - Array [ - Object { + [ + { "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderStyle": "solid", "borderWidth": 0, }, - Object { + { "borderBottomStyle": "solid", "borderBottomWidth": 1, "flexGrow": 1, @@ -1063,12 +1072,13 @@ exports[` should render a Card with Header 1`] = ` should render a Card with Header 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -1109,7 +1119,7 @@ exports[` should render a Card with Header 1`] = ` exports[` should render a Card without 0 padding 1`] = ` should render a Card without 0 padding 1`] = ` @@ -1127,8 +1137,8 @@ exports[` should render a Card without 0 padding 1`] = ` data-blade-component="base-box" elevation="lowRaised" style={ - Array [ - Object { + [ + { "borderRadius": 4, "paddingBottom": 0, "paddingLeft": 0, @@ -1136,18 +1146,18 @@ exports[` should render a Card without 0 padding 1`] = ` "paddingTop": 0, "textAlign": "left", }, - Object { + { "elevation": 4, "shadowColor": "hsla(217, 56%, 17%, 0.64)", - "shadowOffset": Object { + "shadowOffset": { "height": 3, "width": 0, }, "shadowOpacity": 0.12, "shadowRadius": 2, }, - Array [ - Object { + [ + { "backgroundColor": "hsla(0, 0%, 100%, 1)", "display": "flex", "flexDirection": "column", @@ -1162,8 +1172,8 @@ exports[` should render a Card without 0 padding 1`] = ` @@ -1177,7 +1187,7 @@ exports[` should render a Card without 0 padding 1`] = ` exports[` should render a border when elevation is \`none\` 1`] = ` should render a border when elevation is \`none\` 1`] = ` @@ -1195,8 +1205,8 @@ exports[` should render a border when elevation is \`none\` 1`] = ` data-blade-component="base-box" elevation="none" style={ - Array [ - Object { + [ + { "borderRadius": 4, "paddingBottom": 24, "paddingLeft": 24, @@ -1204,18 +1214,18 @@ exports[` should render a border when elevation is \`none\` 1`] = ` "paddingTop": 24, "textAlign": "left", }, - Object { + { "elevation": 0, "shadowColor": "", - "shadowOffset": Object { + "shadowOffset": { "height": 0, "width": 0, }, "shadowOpacity": 0, "shadowRadius": 0, }, - Array [ - Object { + [ + { "backgroundColor": "hsla(0, 0%, 100%, 1)", "borderColor": "hsla(216, 15%, 54%, 0.18)", "borderStyle": "solid", @@ -1233,12 +1243,13 @@ exports[` should render a border when elevation is \`none\` 1`] = ` should render a border when elevation is \`none\` 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -1279,7 +1290,7 @@ exports[` should render a border when elevation is \`none\` 1`] = ` exports[` should render a plain Card 1`] = ` should render a plain Card 1`] = ` @@ -1297,8 +1308,8 @@ exports[` should render a plain Card 1`] = ` data-blade-component="base-box" elevation="highRaised" style={ - Array [ - Object { + [ + { "borderRadius": 4, "paddingBottom": 24, "paddingLeft": 24, @@ -1306,18 +1317,18 @@ exports[` should render a plain Card 1`] = ` "paddingTop": 24, "textAlign": "left", }, - Object { + { "elevation": 26, "shadowColor": "hsla(217, 56%, 17%, 0.64)", - "shadowOffset": Object { + "shadowOffset": { "height": 18, "width": 0, }, "shadowOpacity": 0.2, "shadowRadius": 12, }, - Array [ - Object { + [ + { "backgroundColor": "hsla(220, 27%, 98%, 1)", "display": "flex", "flexDirection": "column", @@ -1332,12 +1343,13 @@ exports[` should render a plain Card 1`] = ` should render a plain Card 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, diff --git a/packages/blade/src/components/Card/__tests__/__snapshots__/Card.ssr.test.tsx.snap b/packages/blade/src/components/Card/__tests__/__snapshots__/Card.ssr.test.tsx.snap index 80d157b3754..83a29e709a9 100644 --- a/packages/blade/src/components/Card/__tests__/__snapshots__/Card.ssr.test.tsx.snap +++ b/packages/blade/src/components/Card/__tests__/__snapshots__/Card.ssr.test.tsx.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[` should render a Card with Header & Footer 1`] = `"
Card Header

12

Card subtitle

NEW

Plain Card

Card Footer

Card footer subtitle

"`; +exports[` should render a Card with Header & Footer 1`] = `"
Card Header

12

Card subtitle

NEW

Plain Card

Card Footer

Card footer subtitle

"`; exports[` should render a Card with Header & Footer 2`] = `
', () => { it('should propagate isDisabled prop to child checkboxes', () => { const labelText = 'Select fruits'; - const { getAllByA11yRole } = renderWithTheme( + const { getAllByRole } = renderWithTheme( Apple Mango Orange , ); - const checkboxes = getAllByA11yRole('checkbox'); + const checkboxes = getAllByRole('checkbox'); checkboxes.forEach((checkbox) => { expect(checkbox.props.accessibilityState.disabled).toBeTruthy(); }); @@ -61,7 +61,7 @@ describe('', () => { it('should propagate name prop to child checkboxes', () => { const labelText = 'Select fruits'; - const { getAllByA11yRole } = renderWithTheme( + const { getAllByRole } = renderWithTheme( Apple Mango @@ -69,7 +69,7 @@ describe('', () => { , ); - const checkboxes = getAllByA11yRole('checkbox'); + const checkboxes = getAllByRole('checkbox'); checkboxes.forEach((checkbox) => { expect(checkbox.props.name).toBe('fruits'); }); @@ -100,7 +100,7 @@ describe('', () => { const helpText = 'Select one'; const errorText = 'Invalid selection'; - const { getAllByA11yRole, queryByText } = renderWithTheme( + const { getAllByRole, queryByText } = renderWithTheme( ', () => { expect(queryByText(helpText)).toBeFalsy(); expect(queryByText(errorText)).toBeTruthy(); - const checkboxes = getAllByA11yRole('checkbox'); + const checkboxes = getAllByRole('checkbox'); checkboxes.forEach((checkbox) => { expect(checkbox.props.accessibilityInvalid).toBeTruthy(); }); @@ -145,7 +145,7 @@ describe('', () => { it('should work in uncontrolled mode', () => { const labelText = 'Select fruits'; const fn = jest.fn(); - const { getAllByA11yRole, getByA11yState } = renderWithTheme( + const { getAllByRole, getByA11yState } = renderWithTheme( ', () => { const checkbox = getByA11yState({ checked: true }); expect(checkbox.props.value).toBe('apple'); - const checkboxes = getAllByA11yRole('checkbox'); + const checkboxes = getAllByRole('checkbox'); const apple = checkboxes.find((checkbox) => checkbox.props.value === 'apple'); const mango = checkboxes.find((checkbox) => checkbox.props.value === 'mango'); const orange = checkboxes.find((checkbox) => checkbox.props.value === 'orange'); @@ -201,12 +201,12 @@ describe('', () => { ); }; - const { getAllByA11yRole, getByA11yState, getByTestId } = renderWithTheme(); + const { getAllByRole, getByA11yState, getByTestId } = renderWithTheme(); const checkbox = getByA11yState({ checked: true }); expect(checkbox.props.value).toBe('apple'); - const checkboxes = getAllByA11yRole('checkbox'); + const checkboxes = getAllByRole('checkbox'); const apple = checkboxes.find((checkbox) => checkbox.props.value === 'apple'); const mango = checkboxes.find((checkbox) => checkbox.props.value === 'mango'); const orange = checkboxes.find((checkbox) => checkbox.props.value === 'orange'); diff --git a/packages/blade/src/components/Checkbox/__tests__/__snapshots__/Checkbox.native.test.tsx.snap b/packages/blade/src/components/Checkbox/__tests__/__snapshots__/Checkbox.native.test.tsx.snap index ccd7b475f95..3171b305454 100644 --- a/packages/blade/src/components/Checkbox/__tests__/__snapshots__/Checkbox.native.test.tsx.snap +++ b/packages/blade/src/components/Checkbox/__tests__/__snapshots__/Checkbox.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render checkbox with label 1`] = ` should render checkbox with label 1`] = ` @@ -21,7 +21,7 @@ exports[` should render checkbox with label 1`] = ` accessibilityRequired={false} accessibilityRole="checkbox" accessibilityState={ - Object { + { "checked": false, "disabled": false, } @@ -39,8 +39,8 @@ exports[` should render checkbox with label 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "marginBottom": 2, @@ -54,8 +54,8 @@ exports[` should render checkbox with label 1`] = ` display="flex" flexDirection="column" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", }, @@ -68,8 +68,8 @@ exports[` should render checkbox with label 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -83,8 +83,8 @@ exports[` should render checkbox with label 1`] = ` isNegative={false} size="medium" style={ - Array [ - Object { + [ + { "alignItems": "center", "backgroundColor": "transparent", "borderColor": "hsla(214, 18%, 69%, 1)", @@ -107,14 +107,15 @@ exports[` should render checkbox with label 1`] = ` should render checkbox with label 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -149,8 +150,8 @@ exports[` should render checkbox with label 1`] = ` should render checkbox with label 1`] = ` exports[` should set disabled state with isDisabled 1`] = ` should set disabled state with isDisabled 1`] = ` @@ -183,7 +184,7 @@ exports[` should set disabled state with isDisabled 1`] = ` accessibilityRequired={false} accessibilityRole="checkbox" accessibilityState={ - Object { + { "checked": false, "disabled": true, } @@ -201,8 +202,8 @@ exports[` should set disabled state with isDisabled 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "marginBottom": 2, @@ -216,8 +217,8 @@ exports[` should set disabled state with isDisabled 1`] = ` display="flex" flexDirection="column" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", }, @@ -230,8 +231,8 @@ exports[` should set disabled state with isDisabled 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -246,8 +247,8 @@ exports[` should set disabled state with isDisabled 1`] = ` isNegative={false} size="medium" style={ - Array [ - Object { + [ + { "alignItems": "center", "backgroundColor": "transparent", "borderColor": "hsla(216, 15%, 54%, 0.18)", @@ -270,14 +271,15 @@ exports[` should set disabled state with isDisabled 1`] = ` should set disabled state with isDisabled 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(214, 18%, 69%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -312,8 +314,8 @@ exports[` should set disabled state with isDisabled 1`] = ` should set disabled state with isDisabled 1`] = ` exports[` should set error state with validationState 1`] = ` should set error state with validationState 1`] = ` @@ -347,7 +349,7 @@ exports[` should set error state with validationState 1`] = ` accessibilityRequired={false} accessibilityRole="checkbox" accessibilityState={ - Object { + { "checked": false, "disabled": false, } @@ -365,8 +367,8 @@ exports[` should set error state with validationState 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "marginBottom": 2, @@ -380,8 +382,8 @@ exports[` should set error state with validationState 1`] = ` display="flex" flexDirection="column" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", }, @@ -394,8 +396,8 @@ exports[` should set error state with validationState 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -409,8 +411,8 @@ exports[` should set error state with validationState 1`] = ` isNegative={true} size="medium" style={ - Array [ - Object { + [ + { "alignItems": "center", "backgroundColor": "hsla(9, 91%, 56%, 0.09)", "borderColor": "hsla(8, 73%, 47%, 1)", @@ -433,14 +435,15 @@ exports[` should set error state with validationState 1`] = ` should set error state with validationState 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -475,8 +478,8 @@ exports[` should set error state with validationState 1`] = ` should set error state with validationState 1`] = ` should set error state with validationState 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -523,15 +526,15 @@ exports[` should set error state with validationState 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 12, "width": 12, @@ -545,7 +548,7 @@ exports[` should set error state with validationState 1`] = ` should set error state with validationState 1`] = ` d="M12 11C12.5523 11 13 11.4477 13 12V16C13 16.5523 12.5523 17 12 17C11.4477 17 11 16.5523 11 16V12C11 11.4477 11.4477 11 12 11Z" fill={4291770400} propList={ - Array [ + [ "fill", ] } @@ -563,7 +566,7 @@ exports[` should set error state with validationState 1`] = ` d="M12 7C11.4477 7 11 7.44772 11 8C11 8.55228 11.4477 9 12 9H12.01C12.5623 9 13.01 8.55228 13.01 8C13.01 7.44772 12.5623 7 12.01 7H12Z" fill={4291770400} propList={ - Array [ + [ "fill", ] } @@ -574,7 +577,7 @@ exports[` should set error state with validationState 1`] = ` fill={4291770400} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -585,14 +588,15 @@ exports[` should set error state with validationState 1`] = ` should set error state with validationState 1`] = ` fontStyle="italic" lineHeight={50} style={ - Array [ - Object { + [ + { "color": "hsla(8, 73%, 47%, 1)", "fontFamily": "Lato", "fontSize": 11, diff --git a/packages/blade/src/components/Checkbox/__tests__/__snapshots__/Checkbox.ssr.test.tsx.snap b/packages/blade/src/components/Checkbox/__tests__/__snapshots__/Checkbox.ssr.test.tsx.snap index 2ece53bbae0..b6c1d67a49a 100644 --- a/packages/blade/src/components/Checkbox/__tests__/__snapshots__/Checkbox.ssr.test.tsx.snap +++ b/packages/blade/src/components/Checkbox/__tests__/__snapshots__/Checkbox.ssr.test.tsx.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[` should render checkbox with error validationState 1`] = `"
This has to be checked
"`; +exports[` should render checkbox with error validationState 1`] = `"
This has to be checked
"`; exports[` should render checkbox with error validationState 2`] = `
should render with label 1`] = ` should render with label 1`] = ` should render with label 1`] = ` should render with label 1`] = ` gap="spacing.0" maxHeight="36px" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -63,6 +64,7 @@ exports[` should render with label 1`] = ` } > should render with label 1`] = ` lineHeight={50} numberOfLines={2} style={ - Array [ - Object { + [ + { "color": "hsla(217, 18%, 45%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -98,8 +100,8 @@ exports[` should render with label 1`] = ` should render with label 1`] = ` } > should render with label 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -162,8 +165,8 @@ exports[` should render with label 1`] = ` @@ -172,8 +175,8 @@ exports[` should render with label 1`] = ` display="flex" flexDirection="column" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", }, @@ -183,8 +186,8 @@ exports[` should render with label 1`] = ` should render with label 1`] = ` @@ -203,7 +206,7 @@ exports[` should render with label 1`] = ` accessibilityRequired={false} accessibilityRole="checkbox" accessibilityState={ - Object { + { "checked": false, "disabled": false, } @@ -221,8 +224,8 @@ exports[` should render with label 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "marginBottom": 2, @@ -237,8 +240,8 @@ exports[` should render with label 1`] = ` display="flex" flexDirection="column" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", }, @@ -251,8 +254,8 @@ exports[` should render with label 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -267,8 +270,8 @@ exports[` should render with label 1`] = ` isNegative={false} size="medium" style={ - Array [ - Object { + [ + { "alignItems": "center", "backgroundColor": "transparent", "borderColor": "hsla(214, 18%, 69%, 1)", @@ -291,14 +294,15 @@ exports[` should render with label 1`] = ` should render with label 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -333,8 +337,8 @@ exports[` should render with label 1`] = ` should render with label 1`] = ` should render with label 1`] = ` @@ -367,7 +371,7 @@ exports[` should render with label 1`] = ` accessibilityRequired={false} accessibilityRole="checkbox" accessibilityState={ - Object { + { "checked": false, "disabled": false, } @@ -385,8 +389,8 @@ exports[` should render with label 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "marginBottom": 2, @@ -401,8 +405,8 @@ exports[` should render with label 1`] = ` display="flex" flexDirection="column" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", }, @@ -415,8 +419,8 @@ exports[` should render with label 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -431,8 +435,8 @@ exports[` should render with label 1`] = ` isNegative={false} size="medium" style={ - Array [ - Object { + [ + { "alignItems": "center", "backgroundColor": "transparent", "borderColor": "hsla(214, 18%, 69%, 1)", @@ -455,14 +459,15 @@ exports[` should render with label 1`] = ` should render with label 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -497,8 +502,8 @@ exports[` should render with label 1`] = ` should render with label 1`] = ` should render with label 1`] = ` @@ -531,7 +536,7 @@ exports[` should render with label 1`] = ` accessibilityRequired={false} accessibilityRole="checkbox" accessibilityState={ - Object { + { "checked": false, "disabled": false, } @@ -549,8 +554,8 @@ exports[` should render with label 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "marginBottom": 2, @@ -565,8 +570,8 @@ exports[` should render with label 1`] = ` display="flex" flexDirection="column" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", }, @@ -579,8 +584,8 @@ exports[` should render with label 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -595,8 +600,8 @@ exports[` should render with label 1`] = ` isNegative={false} size="medium" style={ - Array [ - Object { + [ + { "alignItems": "center", "backgroundColor": "transparent", "borderColor": "hsla(214, 18%, 69%, 1)", @@ -619,14 +624,15 @@ exports[` should render with label 1`] = ` should render with label 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -661,8 +667,8 @@ exports[` should render with label 1`] = ` should render with label 1`] = ` exports[` should render with label 2`] = ` should render with label 2`] = ` should render with label 2`] = ` should render with label 2`] = ` gap="spacing.0" maxHeight="36px" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -742,6 +749,7 @@ exports[` should render with label 2`] = ` } > should render with label 2`] = ` lineHeight={50} numberOfLines={2} style={ - Array [ - Object { + [ + { "color": "hsla(217, 18%, 45%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -777,8 +785,8 @@ exports[` should render with label 2`] = ` should render with label 2`] = ` } > should render with label 2`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -841,8 +850,8 @@ exports[` should render with label 2`] = ` @@ -851,8 +860,8 @@ exports[` should render with label 2`] = ` display="flex" flexDirection="column" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", }, @@ -862,8 +871,8 @@ exports[` should render with label 2`] = ` should render with label 2`] = ` @@ -882,7 +891,7 @@ exports[` should render with label 2`] = ` accessibilityRequired={false} accessibilityRole="checkbox" accessibilityState={ - Object { + { "checked": false, "disabled": false, } @@ -900,8 +909,8 @@ exports[` should render with label 2`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "marginBottom": 2, @@ -916,8 +925,8 @@ exports[` should render with label 2`] = ` display="flex" flexDirection="column" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", }, @@ -930,8 +939,8 @@ exports[` should render with label 2`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -946,8 +955,8 @@ exports[` should render with label 2`] = ` isNegative={false} size="medium" style={ - Array [ - Object { + [ + { "alignItems": "center", "backgroundColor": "transparent", "borderColor": "hsla(214, 18%, 69%, 1)", @@ -970,14 +979,15 @@ exports[` should render with label 2`] = ` should render with label 2`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -1012,8 +1022,8 @@ exports[` should render with label 2`] = ` should render with label 2`] = ` should render with label 2`] = ` @@ -1046,7 +1056,7 @@ exports[` should render with label 2`] = ` accessibilityRequired={false} accessibilityRole="checkbox" accessibilityState={ - Object { + { "checked": false, "disabled": false, } @@ -1064,8 +1074,8 @@ exports[` should render with label 2`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "marginBottom": 2, @@ -1080,8 +1090,8 @@ exports[` should render with label 2`] = ` display="flex" flexDirection="column" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", }, @@ -1094,8 +1104,8 @@ exports[` should render with label 2`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1110,8 +1120,8 @@ exports[` should render with label 2`] = ` isNegative={false} size="medium" style={ - Array [ - Object { + [ + { "alignItems": "center", "backgroundColor": "transparent", "borderColor": "hsla(214, 18%, 69%, 1)", @@ -1134,14 +1144,15 @@ exports[` should render with label 2`] = ` should render with label 2`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -1176,8 +1187,8 @@ exports[` should render with label 2`] = ` should render with label 2`] = ` should render with label 2`] = ` @@ -1210,7 +1221,7 @@ exports[` should render with label 2`] = ` accessibilityRequired={false} accessibilityRole="checkbox" accessibilityState={ - Object { + { "checked": false, "disabled": false, } @@ -1228,8 +1239,8 @@ exports[` should render with label 2`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "marginBottom": 2, @@ -1244,8 +1255,8 @@ exports[` should render with label 2`] = ` display="flex" flexDirection="column" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", }, @@ -1258,8 +1269,8 @@ exports[` should render with label 2`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1274,8 +1285,8 @@ exports[` should render with label 2`] = ` isNegative={false} size="medium" style={ - Array [ - Object { + [ + { "alignItems": "center", "backgroundColor": "transparent", "borderColor": "hsla(214, 18%, 69%, 1)", @@ -1298,14 +1309,15 @@ exports[` should render with label 2`] = ` should render with label 2`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -1340,8 +1352,8 @@ exports[` should render with label 2`] = ` should render with label 2`] = ` should render with label 2`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1378,6 +1390,7 @@ exports[` should render with label 2`] = ` } > should render with label 2`] = ` fontStyle="italic" lineHeight={50} style={ - Array [ - Object { + [ + { "color": "hsla(216, 16%, 60%, 1)", "fontFamily": "Lato", "fontSize": 11, diff --git a/packages/blade/src/components/Checkbox/__tests__/__snapshots__/CheckboxGroup.ssr.test.tsx.snap b/packages/blade/src/components/Checkbox/__tests__/__snapshots__/CheckboxGroup.ssr.test.tsx.snap index 68f5716d278..28447dc6d9e 100644 --- a/packages/blade/src/components/Checkbox/__tests__/__snapshots__/CheckboxGroup.ssr.test.tsx.snap +++ b/packages/blade/src/components/Checkbox/__tests__/__snapshots__/CheckboxGroup.ssr.test.tsx.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[` should render errorText when validationState is set to error 1`] = `"

Select fruits

,Invalid selection

Invalid selection
"`; +exports[` should render errorText when validationState is set to error 1`] = `"

Select fruits

,Invalid selection

Invalid selection
"`; exports[` should render errorText when validationState is set to error 2`] = `
', () => { // Collapsible uses animations and requestAnimationFrame which makes RN tests throw warnings beforeEach(() => { - jest.useFakeTimers(); + jest.useFakeTimers({ + legacyFakeTimers: true, + }); }); afterEach(() => { jest.useRealTimers(); diff --git a/packages/blade/src/components/Collapsible/__tests__/__snapshots__/Collapsible.native.test.tsx.snap b/packages/blade/src/components/Collapsible/__tests__/__snapshots__/Collapsible.native.test.tsx.snap index 273e0702058..1dfc97500f9 100644 --- a/packages/blade/src/components/Collapsible/__tests__/__snapshots__/Collapsible.native.test.tsx.snap +++ b/packages/blade/src/components/Collapsible/__tests__/__snapshots__/Collapsible.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render with CollapsibleButton 1`] = ` should render with CollapsibleButton 1`] = ` @@ -22,7 +22,7 @@ exports[` should render with CollapsibleButton 1`] = ` display="flex" flexDirection="column" maxWidth={ - Object { + { "l": "1136px", "m": "640px", "s": "710px", @@ -30,8 +30,8 @@ exports[` should render with CollapsibleButton 1`] = ` } minWidth="200px" style={ - Array [ - Object { + [ + { "alignItems": "flex-start", "display": "flex", "flexDirection": "column", @@ -45,7 +45,7 @@ exports[` should render with CollapsibleButton 1`] = ` accessibilityControls="collapsible-body-1" accessibilityRole="button" accessibilityState={ - Object { + { "disabled": false, "expanded": false, } @@ -85,8 +85,8 @@ exports[` should render with CollapsibleButton 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "flex-start", "backgroundColor": "hsla(218, 89%, 51%, 1)", @@ -107,7 +107,7 @@ exports[` should render with CollapsibleButton 1`] = ` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(218, 89%, 51%, 1)", "borderColor": "hsla(218, 89%, 51%, 1)", }, @@ -123,8 +123,8 @@ exports[` should render with CollapsibleButton 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -133,21 +133,22 @@ exports[` should render with CollapsibleButton 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render with CollapsibleButton 1`] = ` id="collapsible-body-1" importantForAccessibility="no-hide-descendants" style={ - Array [ - Object {}, + [ + {}, ] } > should render with CollapsibleButton 1`] = ` should render with CollapsibleButton 1`] = ` should render with CollapsibleButton 1`] = ` flexDirection="column" minWidth="200px" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", "minWidth": 200, @@ -234,6 +235,7 @@ exports[` should render with CollapsibleButton 1`] = ` } > should render with CollapsibleButton 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -269,8 +271,8 @@ exports[` should render with CollapsibleButton 1`] = ` data-blade-component="amount" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -282,8 +284,8 @@ exports[` should render with CollapsibleButton 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "baseline", "display": "flex", "flexDirection": "row", @@ -294,14 +296,15 @@ exports[` should render with CollapsibleButton 1`] = ` } > should render with CollapsibleButton 1`] = ` ₹ should render with CollapsibleButton 1`] = ` } > should render with CollapsibleButton 1`] = ` . should render with CollapsibleButton 1`] = ` exports[` should render with CollapsibleLink 1`] = ` should render with CollapsibleLink 1`] = ` @@ -443,7 +449,7 @@ exports[` should render with CollapsibleLink 1`] = ` display="flex" flexDirection="column" maxWidth={ - Object { + { "l": "1136px", "m": "640px", "s": "710px", @@ -451,8 +457,8 @@ exports[` should render with CollapsibleLink 1`] = ` } minWidth="200px" style={ - Array [ - Object { + [ + { "alignItems": "flex-start", "display": "flex", "flexDirection": "column", @@ -466,7 +472,7 @@ exports[` should render with CollapsibleLink 1`] = ` accessibilityControls="collapsible-body-3" accessibilityRole="button" accessibilityState={ - Object { + { "disabled": false, "expanded": false, } @@ -484,8 +490,8 @@ exports[` should render with CollapsibleLink 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignSelf": "flex-start", "backgroundColor": "transparent", "borderColor": "black", @@ -510,8 +516,8 @@ exports[` should render with CollapsibleLink 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -520,14 +526,15 @@ exports[` should render with CollapsibleLink 1`] = ` } > should render with CollapsibleLink 1`] = ` data-blade-component="base-box" display="flex" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "paddingLeft": 4, @@ -570,9 +577,9 @@ exports[` should render with CollapsibleLink 1`] = ` accessibilityElementsHidden={true} importantForAccessibility="no-hide-descendants" style={ - Object { - "transform": Array [ - Object { + { + "transform": [ + { "rotateZ": "0deg", }, ], @@ -593,15 +600,15 @@ exports[` should render with CollapsibleLink 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 16, "width": 16, @@ -615,7 +622,7 @@ exports[` should render with CollapsibleLink 1`] = ` should render with CollapsibleLink 1`] = ` fill={4279461105} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -645,19 +652,19 @@ exports[` should render with CollapsibleLink 1`] = ` id="collapsible-body-3" importantForAccessibility="no-hide-descendants" style={ - Array [ - Object {}, + [ + {}, ] } > should render with CollapsibleLink 1`] = ` should render with CollapsibleLink 1`] = ` should render with CollapsibleLink 1`] = ` flexDirection="column" minWidth="200px" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", "minWidth": 200, @@ -699,6 +706,7 @@ exports[` should render with CollapsibleLink 1`] = ` } > should render with CollapsibleLink 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -734,8 +742,8 @@ exports[` should render with CollapsibleLink 1`] = ` data-blade-component="amount" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -747,8 +755,8 @@ exports[` should render with CollapsibleLink 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "baseline", "display": "flex", "flexDirection": "row", @@ -759,14 +767,15 @@ exports[` should render with CollapsibleLink 1`] = ` } > should render with CollapsibleLink 1`] = ` ₹ should render with CollapsibleLink 1`] = ` } > should render with CollapsibleLink 1`] = ` . should render Collapsible on server 1`] = `"

Actual amount

₹1,000.00

Razorpay Platform Fees

2%

GST

18%

"`; +exports[` should render Collapsible on server 1`] = `"

Actual amount

₹1,000.00

Razorpay Platform Fees

2%

GST

18%

"`; exports[` should render Collapsible on server 2`] = `
should render Counter with default props 1`] = ` should render Counter with default props 1`] = ` data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -25,11 +25,11 @@ exports[` should render Counter with default props 1`] = ` platform="onMobile" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderRadius": 9999, @@ -48,8 +48,8 @@ exports[` should render Counter with default props 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -64,6 +64,7 @@ exports[` should render Counter with default props 1`] = ` } > should render Counter with default props 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -107,7 +108,7 @@ exports[` should render Counter with default props 1`] = ` exports[` should render high contrast blue variant Counter 1`] = ` should render high contrast blue variant Counter 1`] = ` data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -129,11 +130,11 @@ exports[` should render high contrast blue variant Counter 1`] = ` platform="onMobile" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(218, 89%, 51%, 1)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 1)", "borderRadius": 9999, @@ -152,8 +153,8 @@ exports[` should render high contrast blue variant Counter 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -168,6 +169,7 @@ exports[` should render high contrast blue variant Counter 1`] = ` } > should render high contrast blue variant Counter 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(0, 0%, 100%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -211,7 +213,7 @@ exports[` should render high contrast blue variant Counter 1`] = ` exports[` should render high contrast information variant Counter 1`] = ` should render high contrast information variant Counter 1`] data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -233,11 +235,11 @@ exports[` should render high contrast information variant Counter 1`] platform="onMobile" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(193, 100%, 35%, 1)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(193, 100%, 35%, 1)", "borderRadius": 9999, @@ -256,8 +258,8 @@ exports[` should render high contrast information variant Counter 1`] justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -272,6 +274,7 @@ exports[` should render high contrast information variant Counter 1`] } > should render high contrast information variant Counter 1`] lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(0, 0%, 100%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -315,7 +318,7 @@ exports[` should render high contrast information variant Counter 1`] exports[` should render high contrast negative variant Counter 1`] = ` should render high contrast negative variant Counter 1`] = data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -337,11 +340,11 @@ exports[` should render high contrast negative variant Counter 1`] = platform="onMobile" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(8, 73%, 47%, 1)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(8, 73%, 47%, 1)", "borderRadius": 9999, @@ -360,8 +363,8 @@ exports[` should render high contrast negative variant Counter 1`] = justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -376,6 +379,7 @@ exports[` should render high contrast negative variant Counter 1`] = } > should render high contrast negative variant Counter 1`] = lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(0, 0%, 100%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -419,7 +423,7 @@ exports[` should render high contrast negative variant Counter 1`] = exports[` should render high contrast neutral variant Counter 1`] = ` should render high contrast neutral variant Counter 1`] = ` data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -441,11 +445,11 @@ exports[` should render high contrast neutral variant Counter 1`] = ` platform="onMobile" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(216, 33%, 29%, 1)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(216, 33%, 29%, 1)", "borderRadius": 9999, @@ -464,8 +468,8 @@ exports[` should render high contrast neutral variant Counter 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -480,6 +484,7 @@ exports[` should render high contrast neutral variant Counter 1`] = ` } > should render high contrast neutral variant Counter 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(0, 0%, 100%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -523,7 +528,7 @@ exports[` should render high contrast neutral variant Counter 1`] = ` exports[` should render high contrast notice variant Counter 1`] = ` should render high contrast notice variant Counter 1`] = ` data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -545,11 +550,11 @@ exports[` should render high contrast notice variant Counter 1`] = ` platform="onMobile" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(38, 97%, 38%, 1)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(38, 97%, 38%, 1)", "borderRadius": 9999, @@ -568,8 +573,8 @@ exports[` should render high contrast notice variant Counter 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -584,6 +589,7 @@ exports[` should render high contrast notice variant Counter 1`] = ` } > should render high contrast notice variant Counter 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(0, 0%, 100%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -627,7 +633,7 @@ exports[` should render high contrast notice variant Counter 1`] = ` exports[` should render high contrast positive variant Counter 1`] = ` should render high contrast positive variant Counter 1`] = data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -649,11 +655,11 @@ exports[` should render high contrast positive variant Counter 1`] = platform="onMobile" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(160, 100%, 26%, 1)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(160, 100%, 26%, 1)", "borderRadius": 9999, @@ -672,8 +678,8 @@ exports[` should render high contrast positive variant Counter 1`] = justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -688,6 +694,7 @@ exports[` should render high contrast positive variant Counter 1`] = } > should render high contrast positive variant Counter 1`] = lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(0, 0%, 100%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -731,7 +738,7 @@ exports[` should render high contrast positive variant Counter 1`] = exports[` should render large size Counter 1`] = ` should render large size Counter 1`] = ` data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -753,11 +760,11 @@ exports[` should render large size Counter 1`] = ` platform="onMobile" size="large" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderRadius": 9999, @@ -776,8 +783,8 @@ exports[` should render large size Counter 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -792,6 +799,7 @@ exports[` should render large size Counter 1`] = ` } > should render large size Counter 1`] = ` lineHeight={100} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -835,7 +843,7 @@ exports[` should render large size Counter 1`] = ` exports[` should render low contrast blue variant Counter 1`] = ` should render low contrast blue variant Counter 1`] = ` data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -857,11 +865,11 @@ exports[` should render low contrast blue variant Counter 1`] = ` platform="onMobile" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(218, 89%, 51%, 0.09)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 0.09)", "borderRadius": 9999, @@ -880,8 +888,8 @@ exports[` should render low contrast blue variant Counter 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -896,6 +904,7 @@ exports[` should render low contrast blue variant Counter 1`] = ` } > should render low contrast blue variant Counter 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(218, 89%, 51%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -939,7 +948,7 @@ exports[` should render low contrast blue variant Counter 1`] = ` exports[` should render low contrast information variant Counter 1`] = ` should render low contrast information variant Counter 1`] data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -961,11 +970,11 @@ exports[` should render low contrast information variant Counter 1`] platform="onMobile" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(193, 100%, 35%, 0.09)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(193, 100%, 35%, 0.09)", "borderRadius": 9999, @@ -984,8 +993,8 @@ exports[` should render low contrast information variant Counter 1`] justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1000,6 +1009,7 @@ exports[` should render low contrast information variant Counter 1`] } > should render low contrast information variant Counter 1`] lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(193, 100%, 35%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -1043,7 +1053,7 @@ exports[` should render low contrast information variant Counter 1`] exports[` should render low contrast negative variant Counter 1`] = ` should render low contrast negative variant Counter 1`] = ` data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1065,11 +1075,11 @@ exports[` should render low contrast negative variant Counter 1`] = ` platform="onMobile" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(9, 91%, 56%, 0.09)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(9, 91%, 56%, 0.09)", "borderRadius": 9999, @@ -1088,8 +1098,8 @@ exports[` should render low contrast negative variant Counter 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1104,6 +1114,7 @@ exports[` should render low contrast negative variant Counter 1`] = ` } > should render low contrast negative variant Counter 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(8, 73%, 47%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -1147,7 +1158,7 @@ exports[` should render low contrast negative variant Counter 1`] = ` exports[` should render low contrast neutral variant Counter 1`] = ` should render low contrast neutral variant Counter 1`] = ` data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1169,11 +1180,11 @@ exports[` should render low contrast neutral variant Counter 1`] = ` platform="onMobile" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderRadius": 9999, @@ -1192,8 +1203,8 @@ exports[` should render low contrast neutral variant Counter 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1208,6 +1219,7 @@ exports[` should render low contrast neutral variant Counter 1`] = ` } > should render low contrast neutral variant Counter 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -1251,7 +1263,7 @@ exports[` should render low contrast neutral variant Counter 1`] = ` exports[` should render low contrast notice variant Counter 1`] = ` should render low contrast notice variant Counter 1`] = ` data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1273,11 +1285,11 @@ exports[` should render low contrast notice variant Counter 1`] = ` platform="onMobile" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(36, 100%, 44%, 0.09)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(36, 100%, 44%, 0.09)", "borderRadius": 9999, @@ -1296,8 +1308,8 @@ exports[` should render low contrast notice variant Counter 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1312,6 +1324,7 @@ exports[` should render low contrast notice variant Counter 1`] = ` } > should render low contrast notice variant Counter 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(38, 97%, 38%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -1355,7 +1368,7 @@ exports[` should render low contrast notice variant Counter 1`] = ` exports[` should render low contrast positive variant Counter 1`] = ` should render low contrast positive variant Counter 1`] = ` data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1377,11 +1390,11 @@ exports[` should render low contrast positive variant Counter 1`] = ` platform="onMobile" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(155, 100%, 31%, 0.09)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(155, 100%, 31%, 0.09)", "borderRadius": 9999, @@ -1400,8 +1413,8 @@ exports[` should render low contrast positive variant Counter 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1416,6 +1429,7 @@ exports[` should render low contrast positive variant Counter 1`] = ` } > should render low contrast positive variant Counter 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(160, 100%, 26%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -1459,7 +1473,7 @@ exports[` should render low contrast positive variant Counter 1`] = ` exports[` should render medium size Counter 1`] = ` should render medium size Counter 1`] = ` data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1481,11 +1495,11 @@ exports[` should render medium size Counter 1`] = ` platform="onMobile" size="medium" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderRadius": 9999, @@ -1504,8 +1518,8 @@ exports[` should render medium size Counter 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1520,6 +1534,7 @@ exports[` should render medium size Counter 1`] = ` } > should render medium size Counter 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -1563,7 +1578,7 @@ exports[` should render medium size Counter 1`] = ` exports[` should render small size Counter 1`] = ` should render small size Counter 1`] = ` data-blade-component="counter" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -1585,11 +1600,11 @@ exports[` should render small size Counter 1`] = ` platform="onMobile" size="small" style={ - Array [ - Object { + [ + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", }, - Object { + { "alignSelf": "center", "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderRadius": 9999, @@ -1608,8 +1623,8 @@ exports[` should render small size Counter 1`] = ` justifyContent="center" overflow="hidden" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -1624,6 +1639,7 @@ exports[` should render small size Counter 1`] = ` } > should render small size Counter 1`] = ` lineHeight={50} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 10, diff --git a/packages/blade/src/components/Counter/__tests__/__snapshots__/Counter.ssr.test.tsx.snap b/packages/blade/src/components/Counter/__tests__/__snapshots__/Counter.ssr.test.tsx.snap index 27d581f597d..6d8a766b2ec 100644 --- a/packages/blade/src/components/Counter/__tests__/__snapshots__/Counter.ssr.test.tsx.snap +++ b/packages/blade/src/components/Counter/__tests__/__snapshots__/Counter.ssr.test.tsx.snap @@ -1,3 +1,3 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[` should limit value with max prop 1`] = `"

10+

"`; +exports[` should limit value with max prop 1`] = `"

10+

"`; diff --git a/packages/blade/src/components/Divider/__tests__/Divider.web.test.tsx b/packages/blade/src/components/Divider/__tests__/Divider.web.test.tsx index cfd0827db91..a4fca38fea4 100644 --- a/packages/blade/src/components/Divider/__tests__/Divider.web.test.tsx +++ b/packages/blade/src/components/Divider/__tests__/Divider.web.test.tsx @@ -1,6 +1,7 @@ import { Divider } from '../Divider'; import { Box } from '~components/Box'; import renderWithTheme from '~utils/testing/renderWithTheme.web'; +import 'jest-styled-components'; describe('', () => { it('should render Divider within flex container', () => { diff --git a/packages/blade/src/components/Divider/__tests__/__snapshots__/Divider.native.test.tsx.snap b/packages/blade/src/components/Divider/__tests__/__snapshots__/Divider.native.test.tsx.snap index fffdb5b5625..de9dc31123c 100644 --- a/packages/blade/src/components/Divider/__tests__/__snapshots__/Divider.native.test.tsx.snap +++ b/packages/blade/src/components/Divider/__tests__/__snapshots__/Divider.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render Divider using height 1`] = ` should render Divider using height 1`] = ` display="flex" height="100px" style={ - Array [ - Object { + [ + { "display": "flex", "height": 100, }, @@ -30,14 +30,14 @@ exports[` should render Divider using height 1`] = ` height="100%" isDividerHorizontal={false} style={ - Array [ - Object { + [ + { "borderLeftColor": "hsla(216, 15%, 54%, 0.18)", "borderStyle": "solid", "borderWidth": 0, "height": "100%", }, - Object { + { "alignSelf": "stretch", "borderLeftStyle": "solid", "borderLeftWidth": 1, @@ -54,7 +54,7 @@ exports[` should render Divider using height 1`] = ` exports[` should render Divider within flex container 1`] = ` should render Divider within flex container 1`] = ` data-blade-component="box" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", }, ] @@ -78,13 +78,13 @@ exports[` should render Divider within flex container 1`] = ` dividerStyle="solid" isDividerHorizontal={true} style={ - Array [ - Object { + [ + { "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderStyle": "solid", "borderWidth": 0, }, - Object { + { "borderBottomStyle": "solid", "borderBottomWidth": 1, "flexGrow": 1, diff --git a/packages/blade/src/components/Divider/__tests__/__snapshots__/Divider.ssr.test.tsx.snap b/packages/blade/src/components/Divider/__tests__/__snapshots__/Divider.ssr.test.tsx.snap index ae97fc57e46..6c7f0204415 100644 --- a/packages/blade/src/components/Divider/__tests__/__snapshots__/Divider.ssr.test.tsx.snap +++ b/packages/blade/src/components/Divider/__tests__/__snapshots__/Divider.ssr.test.tsx.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[` should render Divider on server 1`] = `"
"`; +exports[` should render Divider on server 1`] = `"
"`; exports[` should render Divider on server 2`] = `
should render dropdown 1`] = ` should render dropdown 1`] = ` @@ -20,8 +20,8 @@ exports[` should render dropdown 1`] = ` data-blade-component="base-box" position="relative" style={ - Array [ - Object { + [ + { "position": "relative", "textAlign": "left", }, @@ -33,8 +33,8 @@ exports[` should render dropdown 1`] = ` data-blade-component="base-box" position="relative" style={ - Array [ - Object { + [ + { "position": "relative", }, ] @@ -43,8 +43,8 @@ exports[` should render dropdown 1`] = ` @@ -54,8 +54,8 @@ exports[` should render dropdown 1`] = ` flexDirection="column" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", "position": "relative", @@ -71,8 +71,8 @@ exports[` should render dropdown 1`] = ` flexDirection="row" justifyContent="space-between" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "justifyContent": "space-between", @@ -85,8 +85,8 @@ exports[` should render dropdown 1`] = ` should render dropdown 1`] = ` gap="spacing.0" maxHeight="36px" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -115,6 +115,7 @@ exports[` should render dropdown 1`] = ` } > should render dropdown 1`] = ` lineHeight={50} numberOfLines={2} style={ - Array [ - Object { + [ + { "color": "hsla(217, 18%, 45%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -150,8 +151,8 @@ exports[` should render dropdown 1`] = ` should render dropdown 1`] = ` } > should render dropdown 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -217,14 +219,14 @@ exports[` should render dropdown 1`] = ` flexDirection="row" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "position": "relative", "width": "100%", }, - Object { + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderBottomStyle": "solid", @@ -239,7 +241,7 @@ exports[` should render dropdown 1`] = ` should render dropdown 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Object { + { "backgroundColor": "transparent", "color": "hsla(214, 18%, 69%, 1)", "flexBasis": 0, @@ -281,6 +283,7 @@ exports[` should render dropdown 1`] = ` } > should render dropdown 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(214, 18%, 69%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -319,8 +322,8 @@ exports[` should render dropdown 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -332,8 +335,8 @@ exports[` should render dropdown 1`] = ` data-blade-component="base-box" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", "paddingRight": 12, }, @@ -352,7 +355,7 @@ exports[` should render dropdown 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Object { + { "display": "flex", "justifyContent": "center", "opacity": 1, @@ -373,15 +376,15 @@ exports[` should render dropdown 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 16, "width": 16, @@ -395,7 +398,7 @@ exports[` should render dropdown 1`] = ` should render dropdown 1`] = ` fill={4279445060} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -419,8 +422,8 @@ exports[` should render dropdown 1`] = ` should render dropdown 1`] = ` "position": "absolute", "right": 0, }, - Object { + { "opacity": undefined, "width": "undefined%", }, @@ -441,8 +444,8 @@ exports[` should render dropdown 1`] = ` should render dropdown 1`] = ` flexDirection="row" justifyContent="flex-end" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "justifyContent": "flex-end", @@ -470,8 +473,8 @@ exports[` should render dropdown 1`] = ` data-blade-component="base-box" position="relative" style={ - Array [ - Object { + [ + { "position": "relative", }, ] @@ -492,8 +495,8 @@ exports[` should render dropdown 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "display": "none", "height": "100%", "position": "static", @@ -509,20 +512,20 @@ exports[` should render dropdown 1`] = ` isInBottomSheet={false} position="absolute" style={ - Array [ - Object { + [ + { "display": "none", "position": "absolute", "width": "100%", }, - Object { + { "backgroundColor": "hsla(0, 0%, 100%, 1)", "borderColor": "hsla(216, 15%, 54%, 0.18)", "borderRadius": 4, "borderStyle": "solid", "borderWidth": 1, - "transform": Array [ - Object { + "transform": [ + { "translateY": 8, }, ], @@ -537,8 +540,8 @@ exports[` should render dropdown 1`] = ` flexShrink={0} overflow="auto" style={ - Array [ - Object { + [ + { "flexShrink": 0, "overflow": "auto", }, @@ -548,16 +551,16 @@ exports[` should render dropdown 1`] = ` should render dropdown 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "userSelect": "none", @@ -589,8 +592,8 @@ exports[` should render dropdown 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "flex-start", "display": "flex", "flexBasis": "auto", @@ -606,8 +609,8 @@ exports[` should render dropdown 1`] = ` should render dropdown 1`] = ` flexDirection="row" flexShrink={0} style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "flexShrink": 0, @@ -632,6 +635,7 @@ exports[` should render dropdown 1`] = ` > should render dropdown 1`] = ` fontWeight="bold" lineHeight={300} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 16, @@ -676,13 +680,13 @@ exports[` should render dropdown 1`] = ` dividerStyle="solid" isDividerHorizontal={true} style={ - Array [ - Object { + [ + { "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderStyle": "solid", "borderWidth": 0, }, - Object { + { "borderBottomStyle": "solid", "borderBottomWidth": 1, "flexGrow": 1, @@ -695,25 +699,27 @@ exports[` should render dropdown 1`] = ` should render dropdown 1`] = ` onScrollEndDrag={[Function]} renderItem={[Function]} scrollEventThrottle={50} - stickyHeaderIndices={Array []} + stickyHeaderIndices={[]} style={ - Array [ - Object { + [ + { "marginBottom": 0, "maxHeight": 300, "paddingBottom": 8, @@ -765,7 +771,7 @@ exports[` should render dropdown 1`] = ` should render dropdown 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Object { + { "borderColor": "transparent", "borderRadius": 4, "borderStyle": "solid", @@ -805,8 +811,8 @@ exports[` should render dropdown 1`] = ` flexDirection="row" justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -821,8 +827,8 @@ exports[` should render dropdown 1`] = ` display="flex" justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "justifyContent": "center", @@ -833,8 +839,8 @@ exports[` should render dropdown 1`] = ` should render dropdown 1`] = ` } > should render dropdown 1`] = ` lineHeight={100} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -878,8 +885,8 @@ exports[` should render dropdown 1`] = ` should render dropdown 1`] = ` @@ -903,7 +910,7 @@ exports[` should render dropdown 1`] = ` should render dropdown 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Object { + { "borderColor": "transparent", "borderRadius": 4, "borderStyle": "solid", @@ -943,8 +950,8 @@ exports[` should render dropdown 1`] = ` flexDirection="row" justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -959,8 +966,8 @@ exports[` should render dropdown 1`] = ` display="flex" justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "justifyContent": "center", @@ -971,8 +978,8 @@ exports[` should render dropdown 1`] = ` should render dropdown 1`] = ` } > should render dropdown 1`] = ` lineHeight={100} numberOfLines={1} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -1016,8 +1024,8 @@ exports[` should render dropdown 1`] = ` should render dropdown 1`] = ` @@ -1042,10 +1050,11 @@ exports[` should render dropdown 1`] = ` @@ -1057,13 +1066,13 @@ exports[` should render dropdown 1`] = ` dividerStyle="solid" isDividerHorizontal={true} style={ - Array [ - Object { + [ + { "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderStyle": "solid", "borderWidth": 0, }, - Object { + { "borderBottomStyle": "solid", "borderBottomWidth": 1, "flexGrow": 1, @@ -1075,8 +1084,8 @@ exports[` should render dropdown 1`] = ` should render dropdown 1`] = ` should render dropdown 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignItems": "center", "alignSelf": "center", "backgroundColor": "hsla(218, 89%, 51%, 1)", @@ -1148,7 +1157,7 @@ exports[` should render dropdown 1`] = ` "textDecorationStyle": "solid", "width": "auto", }, - Object { + { "backgroundColor": "hsla(218, 89%, 51%, 1)", "borderColor": "hsla(218, 89%, 51%, 1)", }, @@ -1164,8 +1173,8 @@ exports[` should render dropdown 1`] = ` isHidden={false} justifyContent="center" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexBasis": 0, @@ -1174,21 +1183,22 @@ exports[` should render dropdown 1`] = ` "flexShrink": 1, "justifyContent": "center", }, - Object { + { "opacity": 1, }, ] } > should render dropdown and make it visible on click 1`] = `"
Recent Searches
"`; +exports[` should render dropdown and make it visible on click 1`] = `"
"`; exports[` should render dropdown and make it visible on click 2`] = `
should render ActivityIcon 1`] = ` should render ActivityIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ActivityIcon 1`] = ` should render ActivityIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/AirplayIcon/__snapshots__/AirplayIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/AirplayIcon/__snapshots__/AirplayIcon.native.test.tsx.snap index 16bed998c77..5f5e5bf5156 100644 --- a/packages/blade/src/components/Icons/AirplayIcon/__snapshots__/AirplayIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/AirplayIcon/__snapshots__/AirplayIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render AirplayIcon 1`] = ` should render AirplayIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render AirplayIcon 1`] = ` should render AirplayIcon 1`] = ` d="M3 4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4V14C21 14.5523 20.5523 15 20 15H19C18.4477 15 18 15.4477 18 16C18 16.5523 18.4477 17 19 17H20C21.6569 17 23 15.6569 23 14V4C23 2.34315 21.6569 1 20 1H4C2.34315 1 1 2.34315 1 4V14C1 15.6569 2.34315 17 4 17H5C5.55228 17 6 16.5523 6 16C6 15.4477 5.55228 15 5 15H4C3.44772 15 3 14.5523 3 14V4Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render AirplayIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/AlertCircleIcon/__snapshots__/AlertCircleIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/AlertCircleIcon/__snapshots__/AlertCircleIcon.native.test.tsx.snap index 256716a7ae0..adb9671a3a1 100644 --- a/packages/blade/src/components/Icons/AlertCircleIcon/__snapshots__/AlertCircleIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/AlertCircleIcon/__snapshots__/AlertCircleIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render AlertCircleIcon 1`] = ` should render AlertCircleIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render AlertCircleIcon 1`] = ` should render AlertCircleIcon 1`] = ` d="M12 7C12.5523 7 13 7.44772 13 8V12C13 12.5523 12.5523 13 12 13C11.4477 13 11 12.5523 11 12V8C11 7.44772 11.4477 7 12 7Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render AlertCircleIcon 1`] = ` d="M12 17C12.5523 17 13 16.5523 13 16C13 15.4477 12.5523 15 12 15C11.4477 15 11 15.4477 11 16C11 16.5523 11.4477 17 12 17Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -73,7 +73,7 @@ exports[` should render AlertCircleIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/AlertOctagonIcon/__snapshots__/AlertOctagonIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/AlertOctagonIcon/__snapshots__/AlertOctagonIcon.native.test.tsx.snap index 292fdd45cff..780ae8fbdf3 100644 --- a/packages/blade/src/components/Icons/AlertOctagonIcon/__snapshots__/AlertOctagonIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/AlertOctagonIcon/__snapshots__/AlertOctagonIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render AlertOctagonIcon 1`] = ` should render AlertOctagonIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render AlertOctagonIcon 1`] = ` should render AlertOctagonIcon 1`] = ` d="M12 7C12.5523 7 13 7.44772 13 8V12C13 12.5523 12.5523 13 12 13C11.4477 13 11 12.5523 11 12V8C11 7.44772 11.4477 7 12 7Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render AlertOctagonIcon 1`] = ` d="M12 17C12.5523 17 13 16.5523 13 16C13 15.4477 12.5523 15 12 15C11.4477 15 11 15.4477 11 16C11 16.5523 11.4477 17 12 17Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -73,7 +73,7 @@ exports[` should render AlertOctagonIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/AlertOnlyIcon/__snapshots__/AlertOnlyIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/AlertOnlyIcon/__snapshots__/AlertOnlyIcon.native.test.tsx.snap index 74f6d8e24b8..64ba5f704b4 100644 --- a/packages/blade/src/components/Icons/AlertOnlyIcon/__snapshots__/AlertOnlyIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/AlertOnlyIcon/__snapshots__/AlertOnlyIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render AlertOnlyIcon 1`] = ` should render AlertOnlyIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render AlertOnlyIcon 1`] = ` should render AlertOnlyIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/AlertTriangleIcon/__snapshots__/AlertTriangleIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/AlertTriangleIcon/__snapshots__/AlertTriangleIcon.native.test.tsx.snap index ed59eaaddf3..addd1361f5e 100644 --- a/packages/blade/src/components/Icons/AlertTriangleIcon/__snapshots__/AlertTriangleIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/AlertTriangleIcon/__snapshots__/AlertTriangleIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render AlertTriangleIcon 1`] = ` should render AlertTriangleIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render AlertTriangleIcon 1`] = ` should render AlertTriangleIcon 1`] = ` d="M12 8.10275C12.5523 8.10275 13 8.55047 13 9.10275V13.1028C13 13.655 12.5523 14.1028 12 14.1028C11.4477 14.1028 11 13.655 11 13.1028V9.10275C11 8.55047 11.4477 8.10275 12 8.10275Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render AlertTriangleIcon 1`] = ` d="M12 18.1028C12.5523 18.1028 13 17.655 13 17.1028C13 16.5505 12.5523 16.1028 12 16.1028C11.4477 16.1028 11 16.5505 11 17.1028C11 17.655 11.4477 18.1028 12 18.1028Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -73,7 +73,7 @@ exports[` should render AlertTriangleIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/AlignCenterIcon/__snapshots__/AlignCenterIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/AlignCenterIcon/__snapshots__/AlignCenterIcon.native.test.tsx.snap index 109d665994f..71c1f3e4af4 100644 --- a/packages/blade/src/components/Icons/AlignCenterIcon/__snapshots__/AlignCenterIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/AlignCenterIcon/__snapshots__/AlignCenterIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render AlignCenterIcon 1`] = ` should render AlignCenterIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render AlignCenterIcon 1`] = ` should render AlignCenterIcon 1`] = ` d="M3 5C2.44772 5 2 5.44772 2 6C2 6.55228 2.44772 7 3 7H21C21.5523 7 22 6.55228 22 6C22 5.44772 21.5523 5 21 5H3Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render AlignCenterIcon 1`] = ` d="M6 9C5.44772 9 5 9.44772 5 10C5 10.5523 5.44772 11 6 11H18C18.5523 11 19 10.5523 19 10C19 9.44772 18.5523 9 18 9H6Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -71,7 +71,7 @@ exports[` should render AlignCenterIcon 1`] = ` d="M2 14C2 13.4477 2.44772 13 3 13H21C21.5523 13 22 13.4477 22 14C22 14.5523 21.5523 15 21 15H3C2.44772 15 2 14.5523 2 14Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -80,7 +80,7 @@ exports[` should render AlignCenterIcon 1`] = ` d="M6 17C5.44772 17 5 17.4477 5 18C5 18.5523 5.44772 19 6 19H18C18.5523 19 19 18.5523 19 18C19 17.4477 18.5523 17 18 17H6Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/AlignJustifyIcon/__snapshots__/AlignJustifyIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/AlignJustifyIcon/__snapshots__/AlignJustifyIcon.native.test.tsx.snap index 976ec5755a3..8a2bfe7678f 100644 --- a/packages/blade/src/components/Icons/AlignJustifyIcon/__snapshots__/AlignJustifyIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/AlignJustifyIcon/__snapshots__/AlignJustifyIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render AlignJustifyIcon 1`] = ` should render AlignJustifyIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render AlignJustifyIcon 1`] = ` should render AlignJustifyIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/AlignLeftIcon/__snapshots__/AlignLeftIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/AlignLeftIcon/__snapshots__/AlignLeftIcon.native.test.tsx.snap index 97e562506ca..553741c31a9 100644 --- a/packages/blade/src/components/Icons/AlignLeftIcon/__snapshots__/AlignLeftIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/AlignLeftIcon/__snapshots__/AlignLeftIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render AlignLeftIcon 1`] = ` should render AlignLeftIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render AlignLeftIcon 1`] = ` should render AlignLeftIcon 1`] = ` d="M3 5C2.44772 5 2 5.44772 2 6C2 6.55228 2.44772 7 3 7H21C21.5523 7 22 6.55228 22 6C22 5.44772 21.5523 5 21 5H3Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render AlignLeftIcon 1`] = ` d="M3 9C2.44772 9 2 9.44772 2 10C2 10.5523 2.44772 11 3 11H17C17.5523 11 18 10.5523 18 10C18 9.44772 17.5523 9 17 9H3Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -71,7 +71,7 @@ exports[` should render AlignLeftIcon 1`] = ` d="M2 14C2 13.4477 2.44772 13 3 13H21C21.5523 13 22 13.4477 22 14C22 14.5523 21.5523 15 21 15H3C2.44772 15 2 14.5523 2 14Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -80,7 +80,7 @@ exports[` should render AlignLeftIcon 1`] = ` d="M3 17C2.44772 17 2 17.4477 2 18C2 18.5523 2.44772 19 3 19H17C17.5523 19 18 18.5523 18 18C18 17.4477 17.5523 17 17 17H3Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/AlignRightIcon/__snapshots__/AlignRightIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/AlignRightIcon/__snapshots__/AlignRightIcon.native.test.tsx.snap index a0e72295eff..520737a0469 100644 --- a/packages/blade/src/components/Icons/AlignRightIcon/__snapshots__/AlignRightIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/AlignRightIcon/__snapshots__/AlignRightIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render AlignRightIcon 1`] = ` should render AlignRightIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render AlignRightIcon 1`] = ` should render AlignRightIcon 1`] = ` d="M3 5C2.44772 5 2 5.44772 2 6C2 6.55228 2.44772 7 3 7H21C21.5523 7 22 6.55228 22 6C22 5.44772 21.5523 5 21 5H3Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render AlignRightIcon 1`] = ` d="M7 9C6.44772 9 6 9.44772 6 10C6 10.5523 6.44772 11 7 11H21C21.5523 11 22 10.5523 22 10C22 9.44772 21.5523 9 21 9H7Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -71,7 +71,7 @@ exports[` should render AlignRightIcon 1`] = ` d="M2 14C2 13.4477 2.44772 13 3 13H21C21.5523 13 22 13.4477 22 14C22 14.5523 21.5523 15 21 15H3C2.44772 15 2 14.5523 2 14Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -80,7 +80,7 @@ exports[` should render AlignRightIcon 1`] = ` d="M7 17C6.44772 17 6 17.4477 6 18C6 18.5523 6.44772 19 7 19H21C21.5523 19 22 18.5523 22 18C22 17.4477 21.5523 17 21 17H7Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/AnchorIcon/__snapshots__/AnchorIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/AnchorIcon/__snapshots__/AnchorIcon.native.test.tsx.snap index c7fafa87e8d..765c1f7a4a4 100644 --- a/packages/blade/src/components/Icons/AnchorIcon/__snapshots__/AnchorIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/AnchorIcon/__snapshots__/AnchorIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render AnchorIcon 1`] = ` should render AnchorIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render AnchorIcon 1`] = ` should render AnchorIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/AnnouncementIcon/__snapshots__/AnnouncementIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/AnnouncementIcon/__snapshots__/AnnouncementIcon.native.test.tsx.snap index df0fc2a1fed..cac24a32e00 100644 --- a/packages/blade/src/components/Icons/AnnouncementIcon/__snapshots__/AnnouncementIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/AnnouncementIcon/__snapshots__/AnnouncementIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render AnnouncementIcon 1`] = ` should render AnnouncementIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render AnnouncementIcon 1`] = ` should render AnnouncementIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ApertureIcon/__snapshots__/ApertureIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ApertureIcon/__snapshots__/ApertureIcon.native.test.tsx.snap index 138823ff706..eca853adc26 100644 --- a/packages/blade/src/components/Icons/ApertureIcon/__snapshots__/ApertureIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ApertureIcon/__snapshots__/ApertureIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ApertureIcon 1`] = ` should render ApertureIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ApertureIcon 1`] = ` should render ApertureIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/AppStoreIcon/__snapshots__/AppStoreIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/AppStoreIcon/__snapshots__/AppStoreIcon.native.test.tsx.snap index 91bd1105723..2b26d43e3af 100644 --- a/packages/blade/src/components/Icons/AppStoreIcon/__snapshots__/AppStoreIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/AppStoreIcon/__snapshots__/AppStoreIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render AppStoreIcon 1`] = ` should render AppStoreIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render AppStoreIcon 1`] = ` should render AppStoreIcon 1`] = ` d="M17.5549 4.37079L20.7774 7.74158L17.5549 11.1124L14.3323 7.74158L17.5549 4.37079ZM8.8323 4.94252V9.70689H4.27743V4.94252H8.8323ZM20.2195 16.8534V21.6178H15.6646V16.8534H20.2195ZM8.8323 16.8534V21.6178H4.27743V16.8534H8.8323ZM18.2771 1.75409C17.8834 1.34299 17.2264 1.34299 16.8327 1.75409L11.7716 7.03861C11.4014 7.4251 11.4012 8.0345 11.771 8.42132L16.832 13.7152C17.2259 14.1271 17.8838 14.1271 18.2777 13.7152L23.3388 8.42132C23.7086 8.0345 23.7083 7.4251 23.3382 7.03861L18.2771 1.75409ZM11.1097 3.56033C11.1097 3.00805 10.662 2.56033 10.1097 2.56033H3C2.44771 2.56033 2 3.00805 2 3.56033V11.0891C2 11.6414 2.44772 12.0891 3 12.0891H10.1097C10.662 12.0891 11.1097 11.6414 11.1097 11.0891V3.56033ZM22.4969 15.4713C22.4969 14.919 22.0492 14.4713 21.4969 14.4713H14.3872C13.8349 14.4713 13.3872 14.919 13.3872 15.4713V23C13.3872 23.5523 13.8349 24 14.3872 24H21.4969C22.0492 24 22.4969 23.5523 22.4969 23V15.4713ZM11.1097 15.4713C11.1097 14.919 10.662 14.4713 10.1097 14.4713H3C2.44771 14.4713 2 14.919 2 15.4713V23C2 23.5523 2.44772 24 3 24H10.1097C10.662 24 11.1097 23.5523 11.1097 23V15.4713Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ArrowDownIcon/__snapshots__/ArrowDownIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ArrowDownIcon/__snapshots__/ArrowDownIcon.native.test.tsx.snap index f542dace84a..4bc7447b036 100644 --- a/packages/blade/src/components/Icons/ArrowDownIcon/__snapshots__/ArrowDownIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ArrowDownIcon/__snapshots__/ArrowDownIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ArrowDownIcon 1`] = ` should render ArrowDownIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ArrowDownIcon 1`] = ` should render ArrowDownIcon 1`] = ` d="M13 4a1 1 0 1 0-2 0v13.586l-4.293-4.293a1 1 0 0 0-1.414 1.414l6 6a1 1 0 0 0 1.414 0l6-6a1 1 0 0 0-1.414-1.414L13 17.586V4Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ArrowDownLeftIcon/__snapshots__/ArrowDownLeftIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ArrowDownLeftIcon/__snapshots__/ArrowDownLeftIcon.native.test.tsx.snap index 3f2827f4299..a7fef0b6f79 100644 --- a/packages/blade/src/components/Icons/ArrowDownLeftIcon/__snapshots__/ArrowDownLeftIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ArrowDownLeftIcon/__snapshots__/ArrowDownLeftIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ArrowDownLeftIcon 1`] = ` should render ArrowDownLeftIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ArrowDownLeftIcon 1`] = ` should render ArrowDownLeftIcon 1`] = ` d="M18.7071 6.70711C19.0976 6.31658 19.0976 5.68342 18.7071 5.29289C18.3166 4.90237 17.6834 4.90237 17.2929 5.29289L7 15.5858V9C7 8.44772 6.55228 8 6 8C5.44772 8 5 8.44772 5 9V17.9998C5 18.1354 5.02699 18.2649 5.07588 18.3828C5.12432 18.4999 5.19595 18.6096 5.29078 18.705C5.29219 18.7064 5.2936 18.7078 5.29502 18.7092C5.48924 18.9023 5.74301 18.9992 5.997 19C5.998 19 5.999 19 6 19H15C15.5523 19 16 18.5523 16 18C16 17.4477 15.5523 17 15 17H8.41421L18.7071 6.70711Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ArrowDownRightIcon/__snapshots__/ArrowDownRightIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ArrowDownRightIcon/__snapshots__/ArrowDownRightIcon.native.test.tsx.snap index be115be6f41..03a8b8d466c 100644 --- a/packages/blade/src/components/Icons/ArrowDownRightIcon/__snapshots__/ArrowDownRightIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ArrowDownRightIcon/__snapshots__/ArrowDownRightIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ArrowDownRightIcon 1`] = ` should render ArrowDownRightIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ArrowDownRightIcon 1`] = ` should render ArrowDownRightIcon 1`] = ` d="M6.70711 5.29289C6.31658 4.90237 5.68342 4.90237 5.29289 5.29289C4.90237 5.68342 4.90237 6.31658 5.29289 6.70711L15.5858 17H9C8.44772 17 8 17.4477 8 18C8 18.5523 8.44772 19 9 19H17.9993C18.0003 19 18.002 19 18.003 19C18.1375 18.9996 18.2657 18.9727 18.3828 18.9241C18.498 18.8764 18.6062 18.8063 18.7005 18.7136C18.7049 18.7093 18.7093 18.7049 18.7136 18.7005C18.8901 18.5208 18.9992 18.2746 19 18.003C19 18.002 19 18.001 19 18V9C19 8.44772 18.5523 8 18 8C17.4477 8 17 8.44772 17 9V15.5858L6.70711 5.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ArrowLeftIcon/__snapshots__/ArrowLeftIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ArrowLeftIcon/__snapshots__/ArrowLeftIcon.native.test.tsx.snap index 0ed535a325e..27235d96c2c 100644 --- a/packages/blade/src/components/Icons/ArrowLeftIcon/__snapshots__/ArrowLeftIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ArrowLeftIcon/__snapshots__/ArrowLeftIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ArrowLeftIcon 1`] = ` should render ArrowLeftIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ArrowLeftIcon 1`] = ` should render ArrowLeftIcon 1`] = ` d="M10.707 6.707a1 1 0 0 0-1.414-1.414l-6 6a1 1 0 0 0 0 1.414l6 6a1 1 0 0 0 1.414-1.414L6.414 13H20a1 1 0 1 0 0-2H6.414l4.293-4.293Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ArrowRightIcon/__snapshots__/ArrowRightIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ArrowRightIcon/__snapshots__/ArrowRightIcon.native.test.tsx.snap index 03576a233a8..b60feb79a31 100644 --- a/packages/blade/src/components/Icons/ArrowRightIcon/__snapshots__/ArrowRightIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ArrowRightIcon/__snapshots__/ArrowRightIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ArrowRightIcon 1`] = ` should render ArrowRightIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ArrowRightIcon 1`] = ` should render ArrowRightIcon 1`] = ` d="M14.707 5.293a1 1 0 1 0-1.414 1.414L17.586 11H4a1 1 0 1 0 0 2h13.586l-4.293 4.293a1 1 0 0 0 1.414 1.414l6-6a1 1 0 0 0 0-1.414l-6-6Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ArrowUpIcon/__snapshots__/ArrowUpIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ArrowUpIcon/__snapshots__/ArrowUpIcon.native.test.tsx.snap index 36f9c92e336..13192efb4b9 100644 --- a/packages/blade/src/components/Icons/ArrowUpIcon/__snapshots__/ArrowUpIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ArrowUpIcon/__snapshots__/ArrowUpIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ArrowUpIcon 1`] = ` should render ArrowUpIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ArrowUpIcon 1`] = ` should render ArrowUpIcon 1`] = ` d="M12.707 3.293a1 1 0 0 0-1.414 0l-6 6a1 1 0 0 0 1.414 1.414L11 6.414V20a1 1 0 1 0 2 0V6.414l4.293 4.293a1 1 0 0 0 1.414-1.414l-6-6Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ArrowUpLeftIcon/__snapshots__/ArrowUpLeftIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ArrowUpLeftIcon/__snapshots__/ArrowUpLeftIcon.native.test.tsx.snap index ac789d1bdbc..94c4fa54c9f 100644 --- a/packages/blade/src/components/Icons/ArrowUpLeftIcon/__snapshots__/ArrowUpLeftIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ArrowUpLeftIcon/__snapshots__/ArrowUpLeftIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ArrowUpLeftIcon 1`] = ` should render ArrowUpLeftIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ArrowUpLeftIcon 1`] = ` should render ArrowUpLeftIcon 1`] = ` d="M6 5C5.44772 5 5 5.44772 5 6V15C5 15.5523 5.44772 16 6 16C6.55228 16 7 15.5523 7 15V8.41421L17.2929 18.7071C17.6834 19.0976 18.3166 19.0976 18.7071 18.7071C19.0976 18.3166 19.0976 17.6834 18.7071 17.2929L8.41421 7H15C15.5523 7 16 6.55228 16 6C16 5.44772 15.5523 5 15 5H6Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ArrowUpRightIcon/__snapshots__/ArrowUpRightIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ArrowUpRightIcon/__snapshots__/ArrowUpRightIcon.native.test.tsx.snap index de291d86a9e..d88b6207eaa 100644 --- a/packages/blade/src/components/Icons/ArrowUpRightIcon/__snapshots__/ArrowUpRightIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ArrowUpRightIcon/__snapshots__/ArrowUpRightIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ArrowUpRightIcon 1`] = ` should render ArrowUpRightIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ArrowUpRightIcon 1`] = ` should render ArrowUpRightIcon 1`] = ` d="M9 5a1 1 0 0 0 0 2h6.586L5.293 17.293a1 1 0 1 0 1.414 1.414L17 8.414V15a1 1 0 1 0 2 0V6a1 1 0 0 0-1-1H9Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/AtSignIcon/__snapshots__/AtSignIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/AtSignIcon/__snapshots__/AtSignIcon.native.test.tsx.snap index 2e261fcd778..e95a0d08aec 100644 --- a/packages/blade/src/components/Icons/AtSignIcon/__snapshots__/AtSignIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/AtSignIcon/__snapshots__/AtSignIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render AtSignIcon 1`] = ` should render AtSignIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render AtSignIcon 1`] = ` should render AtSignIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/AttachmentIcon/__snapshots__/AttachmentIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/AttachmentIcon/__snapshots__/AttachmentIcon.native.test.tsx.snap index baf7ba70b63..b2661d8ef47 100644 --- a/packages/blade/src/components/Icons/AttachmentIcon/__snapshots__/AttachmentIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/AttachmentIcon/__snapshots__/AttachmentIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render AttachmentIcon 1`] = ` should render AttachmentIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render AttachmentIcon 1`] = ` should render AttachmentIcon 1`] = ` d="M2 12C2 9.79086 3.79086 8 6 8H9C9.55229 8 10 7.55228 10 7C10 6.44772 9.55229 6 9 6H6C2.68629 6 0 8.68629 0 12C0 13.5913 0.632141 15.1174 1.75736 16.2426C2.88258 17.3679 4.4087 18 6 18H9C9.55229 18 10 17.5523 10 17C10 16.4477 9.55229 16 9 16H6C4.93913 16 3.92172 15.5786 3.17157 14.8284C2.42143 14.0783 2 13.0609 2 12Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render AttachmentIcon 1`] = ` d="M15 6C14.4477 6 14 6.44772 14 7C14 7.55228 14.4477 8 15 8H18C19.0609 8 20.0783 8.42143 20.8284 9.17157C21.5786 9.92172 22 10.9391 22 12C22 14.2091 20.2091 16 18 16H15C14.4477 16 14 16.4477 14 17C14 17.5523 14.4477 18 15 18H18C21.3137 18 24 15.3137 24 12C24 10.4087 23.3679 8.88258 22.2426 7.75736C21.1174 6.63214 19.5913 6 18 6H15Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -71,7 +71,7 @@ exports[` should render AttachmentIcon 1`] = ` d="M8 11C7.44772 11 7 11.4477 7 12C7 12.5523 7.44772 13 8 13H16C16.5523 13 17 12.5523 17 12C17 11.4477 16.5523 11 16 11H8Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/AwardIcon/__snapshots__/AwardIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/AwardIcon/__snapshots__/AwardIcon.native.test.tsx.snap index d1618b1db90..fe14865d013 100644 --- a/packages/blade/src/components/Icons/AwardIcon/__snapshots__/AwardIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/AwardIcon/__snapshots__/AwardIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render AwardIcon 1`] = ` should render AwardIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render AwardIcon 1`] = ` should render AwardIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/BankIcon/__snapshots__/BankIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/BankIcon/__snapshots__/BankIcon.native.test.tsx.snap index 5ebf31ecf5e..4b9dd372683 100644 --- a/packages/blade/src/components/Icons/BankIcon/__snapshots__/BankIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/BankIcon/__snapshots__/BankIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CloseIcon 1`] = ` should render CloseIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CloseIcon 1`] = ` should render CloseIcon 1`] = ` d="M5.105 10.429a1 1 0 0 0-1 1v5.333a1 1 0 0 0 1 1h1.158a1 1 0 0 0 1-1v-5.333a1 1 0 0 0-1-1H5.105Zm6.316 0a1 1 0 0 0-1 1v5.333a1 1 0 0 0 1 1h1.158a1 1 0 0 0 1-1v-5.333a1 1 0 0 0-1-1H11.42ZM2 22a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-1.143a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1V22Zm15.737-11.571a1 1 0 0 0-1 1v5.333a1 1 0 0 0 1 1h1.158a1 1 0 0 0 1-1v-5.333a1 1 0 0 0-1-1h-1.158Zm-5.273-9.186a1 1 0 0 0-.928 0l-9 4.714A1 1 0 0 0 2 6.843v.49a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-.49a1 1 0 0 0-.536-.886l-9-4.714Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/BarChartAltIcon/__snapshots__/BarChartAltIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/BarChartAltIcon/__snapshots__/BarChartAltIcon.native.test.tsx.snap index ca17430d743..80ff70a0bfa 100644 --- a/packages/blade/src/components/Icons/BarChartAltIcon/__snapshots__/BarChartAltIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/BarChartAltIcon/__snapshots__/BarChartAltIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render BarChartAltIcon 1`] = ` should render BarChartAltIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render BarChartAltIcon 1`] = ` should render BarChartAltIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render BarChartAltIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -79,7 +79,7 @@ exports[` should render BarChartAltIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/BarChartIcon/__snapshots__/BarChartIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/BarChartIcon/__snapshots__/BarChartIcon.native.test.tsx.snap index 9e8af5e15df..5d5541414b8 100644 --- a/packages/blade/src/components/Icons/BarChartIcon/__snapshots__/BarChartIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/BarChartIcon/__snapshots__/BarChartIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render BarChartIcon 1`] = ` should render BarChartIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render BarChartIcon 1`] = ` should render BarChartIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render BarChartIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -79,7 +79,7 @@ exports[` should render BarChartIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/BatteryChargingIcon/__snapshots__/BatteryChargingIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/BatteryChargingIcon/__snapshots__/BatteryChargingIcon.native.test.tsx.snap index 4ed40e0a0cf..d6e990c8202 100644 --- a/packages/blade/src/components/Icons/BatteryChargingIcon/__snapshots__/BatteryChargingIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/BatteryChargingIcon/__snapshots__/BatteryChargingIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render BatteryChargingIcon 1`] = ` should render BatteryChargingIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render BatteryChargingIcon 1`] = ` should render BatteryChargingIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/BatteryIcon/__snapshots__/BatteryIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/BatteryIcon/__snapshots__/BatteryIcon.native.test.tsx.snap index 6eae2bd2816..9bfcafa33de 100644 --- a/packages/blade/src/components/Icons/BatteryIcon/__snapshots__/BatteryIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/BatteryIcon/__snapshots__/BatteryIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render BatteryIcon 1`] = ` should render BatteryIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render BatteryIcon 1`] = ` should render BatteryIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -65,7 +65,7 @@ exports[` should render BatteryIcon 1`] = ` d="M24 11C24 10.4477 23.5523 10 23 10C22.4477 10 22 10.4477 22 11V13C22 13.5523 22.4477 14 23 14C23.5523 14 24 13.5523 24 13V11Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/BellIcon/__snapshots__/BellIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/BellIcon/__snapshots__/BellIcon.native.test.tsx.snap index 31ab0f5cd0d..249e96b4719 100644 --- a/packages/blade/src/components/Icons/BellIcon/__snapshots__/BellIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/BellIcon/__snapshots__/BellIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render BellIcon 1`] = ` should render BellIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render BellIcon 1`] = ` should render BellIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/BellOffIcon/__snapshots__/BellOffIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/BellOffIcon/__snapshots__/BellOffIcon.native.test.tsx.snap index 581f10040ff..21934799198 100644 --- a/packages/blade/src/components/Icons/BellOffIcon/__snapshots__/BellOffIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/BellOffIcon/__snapshots__/BellOffIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render BellOffIcon 1`] = ` should render BellOffIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render BellOffIcon 1`] = ` should render BellOffIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -68,7 +68,7 @@ exports[` should render BellOffIcon 1`] = ` d="M9.05144 3.77092C10.9096 2.72242 13.1848 2.73955 15.0269 3.81591C16.8691 4.89227 18.0011 6.86592 18 8.99949V13C18 13.5523 18.4477 14 19 14C19.5523 14 20 13.5523 20 13V9.00051C20.0015 6.15576 18.4921 3.52422 16.0359 2.08907C13.5797 0.65393 10.5461 0.631087 8.06858 2.02908C7.58758 2.30049 7.41768 2.91043 7.68909 3.39143C7.9605 3.87242 8.57044 4.04233 9.05144 3.77092Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -77,7 +77,7 @@ exports[` should render BellOffIcon 1`] = ` d="M11.135 20.4982C10.8579 20.0205 10.246 19.8579 9.76824 20.135C9.29051 20.4121 9.12789 21.024 9.40501 21.5018C9.9417 22.427 10.9304 22.9965 12 22.9965C13.0696 22.9965 14.0583 22.427 14.595 21.5018C14.8721 21.024 14.7095 20.4121 14.2318 20.135C13.7541 19.8579 13.1421 20.0205 12.865 20.4982C12.6861 20.8066 12.3565 20.9965 12 20.9965C11.6435 20.9965 11.3139 20.8066 11.135 20.4982Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -91,7 +91,7 @@ exports[` should render BellOffIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/BillIcon/__snapshots__/BillIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/BillIcon/__snapshots__/BillIcon.native.test.tsx.snap index ee392ce7b41..992c368578d 100644 --- a/packages/blade/src/components/Icons/BillIcon/__snapshots__/BillIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/BillIcon/__snapshots__/BillIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render BillIcon 1`] = ` should render BillIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render BillIcon 1`] = ` should render BillIcon 1`] = ` d="M8.36841 8.13722C7.81612 8.13722 7.36841 8.58786 7.36841 9.14376C7.36841 9.69965 7.81612 10.1503 8.36841 10.1503H14.9579C15.5102 10.1503 15.9579 9.69965 15.9579 9.14376C15.9579 8.58786 15.5102 8.13722 14.9579 8.13722H8.36841Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render BillIcon 1`] = ` d="M7.36841 6.03268C7.36841 5.47678 7.81612 5.02614 8.36841 5.02614H14.9579C15.5102 5.02614 15.9579 5.47678 15.9579 6.03268C15.9579 6.58857 15.5102 7.03921 14.9579 7.03921H8.36841C7.81612 7.03921 7.36841 6.58857 7.36841 6.03268Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -71,7 +71,7 @@ exports[` should render BillIcon 1`] = ` d="M8.36841 11.7974C7.81612 11.7974 7.36841 12.248 7.36841 12.8039C7.36841 13.3598 7.81612 13.8105 8.36841 13.8105H10.5789C11.1312 13.8105 11.5789 13.3598 11.5789 12.8039C11.5789 12.248 11.1312 11.7974 10.5789 11.7974H8.36841Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -82,7 +82,7 @@ exports[` should render BillIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/BluetoothIcon/__snapshots__/BluetoothIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/BluetoothIcon/__snapshots__/BluetoothIcon.native.test.tsx.snap index adf211f796d..7af458dc8cd 100644 --- a/packages/blade/src/components/Icons/BluetoothIcon/__snapshots__/BluetoothIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/BluetoothIcon/__snapshots__/BluetoothIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render BluetoothIcon 1`] = ` should render BluetoothIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render BluetoothIcon 1`] = ` should render BluetoothIcon 1`] = ` should render BluetoothIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/BoldIcon/__snapshots__/BoldIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/BoldIcon/__snapshots__/BoldIcon.native.test.tsx.snap index e8a07726108..fdb4abc4243 100644 --- a/packages/blade/src/components/Icons/BoldIcon/__snapshots__/BoldIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/BoldIcon/__snapshots__/BoldIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render BoldIcon 1`] = ` should render BoldIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render BoldIcon 1`] = ` should render BoldIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/BookIcon/__snapshots__/BookIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/BookIcon/__snapshots__/BookIcon.native.test.tsx.snap index 0de1908222c..678c4e57641 100644 --- a/packages/blade/src/components/Icons/BookIcon/__snapshots__/BookIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/BookIcon/__snapshots__/BookIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render BookIcon 1`] = ` should render BookIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render BookIcon 1`] = ` should render BookIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/BookmarkIcon/__snapshots__/BookmarkIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/BookmarkIcon/__snapshots__/BookmarkIcon.native.test.tsx.snap index 8090e448faf..86794bd16ad 100644 --- a/packages/blade/src/components/Icons/BookmarkIcon/__snapshots__/BookmarkIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/BookmarkIcon/__snapshots__/BookmarkIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render BookmarkIcon 1`] = ` should render BookmarkIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render BookmarkIcon 1`] = ` should render BookmarkIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/BoxIcon/__snapshots__/BoxIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/BoxIcon/__snapshots__/BoxIcon.native.test.tsx.snap index f8a5b97ceb8..e1c89771dc0 100644 --- a/packages/blade/src/components/Icons/BoxIcon/__snapshots__/BoxIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/BoxIcon/__snapshots__/BoxIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render BoxIcon 1`] = ` should render BoxIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render BoxIcon 1`] = ` should render BoxIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/BriefcaseIcon/__snapshots__/BriefcaseIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/BriefcaseIcon/__snapshots__/BriefcaseIcon.native.test.tsx.snap index 925bbe52177..a0fbdc2450a 100644 --- a/packages/blade/src/components/Icons/BriefcaseIcon/__snapshots__/BriefcaseIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/BriefcaseIcon/__snapshots__/BriefcaseIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render BriefcaseIcon 1`] = ` should render BriefcaseIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render BriefcaseIcon 1`] = ` should render BriefcaseIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/BulkPayoutsIcon/__snapshots__/BulkPayoutsIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/BulkPayoutsIcon/__snapshots__/BulkPayoutsIcon.native.test.tsx.snap index 8bf058652c0..ad28ce738b3 100644 --- a/packages/blade/src/components/Icons/BulkPayoutsIcon/__snapshots__/BulkPayoutsIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/BulkPayoutsIcon/__snapshots__/BulkPayoutsIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render BulkPayoutsIcon 1`] = ` should render BulkPayoutsIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render BulkPayoutsIcon 1`] = ` should render BulkPayoutsIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/CalendarIcon/__snapshots__/CalendarIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CalendarIcon/__snapshots__/CalendarIcon.native.test.tsx.snap index 3267deaff2e..1a4692d6c63 100644 --- a/packages/blade/src/components/Icons/CalendarIcon/__snapshots__/CalendarIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CalendarIcon/__snapshots__/CalendarIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CalendarIcon 1`] = ` should render CalendarIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CalendarIcon 1`] = ` should render CalendarIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render CalendarIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -79,7 +79,7 @@ exports[` should render CalendarIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -91,7 +91,7 @@ exports[` should render CalendarIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/CameraIcon/__snapshots__/CameraIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CameraIcon/__snapshots__/CameraIcon.native.test.tsx.snap index 3485fbe89c3..b5bace34aa3 100644 --- a/packages/blade/src/components/Icons/CameraIcon/__snapshots__/CameraIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CameraIcon/__snapshots__/CameraIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CameraIcon 1`] = ` should render CameraIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CameraIcon 1`] = ` should render CameraIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render CameraIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/CameraOffIcon/__snapshots__/CameraOffIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CameraOffIcon/__snapshots__/CameraOffIcon.native.test.tsx.snap index 272277576ee..951b061e5cb 100644 --- a/packages/blade/src/components/Icons/CameraOffIcon/__snapshots__/CameraOffIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CameraOffIcon/__snapshots__/CameraOffIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CameraOffIcon 1`] = ` should render CameraOffIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CameraOffIcon 1`] = ` should render CameraOffIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -73,7 +73,7 @@ exports[` should render CameraOffIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CastIcon/__snapshots__/CastIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CastIcon/__snapshots__/CastIcon.native.test.tsx.snap index 250e8edee16..93dd6a58b54 100644 --- a/packages/blade/src/components/Icons/CastIcon/__snapshots__/CastIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CastIcon/__snapshots__/CastIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CastIcon 1`] = ` should render CastIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CastIcon 1`] = ` should render CastIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/CheckCircleIcon/__snapshots__/CheckCircleIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CheckCircleIcon/__snapshots__/CheckCircleIcon.native.test.tsx.snap index 80ecef61886..2ce015e508d 100644 --- a/packages/blade/src/components/Icons/CheckCircleIcon/__snapshots__/CheckCircleIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CheckCircleIcon/__snapshots__/CheckCircleIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CheckCircleIcon 1`] = ` should render CheckCircleIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CheckCircleIcon 1`] = ` should render CheckCircleIcon 1`] = ` d="M4.15845 7.14679C6.74812 4.11688 11.0222 3.1512 14.663 4.77343C15.1675 4.99821 15.7586 4.77147 15.9834 4.267C16.2082 3.76253 15.9815 3.17135 15.477 2.94657C11.0272 0.96385 5.80325 2.14413 2.6381 5.84735C-0.527049 9.55057 -0.879431 14.8946 1.77205 18.9813C4.42353 23.0681 9.44725 24.9241 14.1189 23.5429C18.7905 22.1616 21.9972 17.8716 22 13V12.07C22 11.5177 21.5523 11.07 21 11.07C20.4477 11.07 20 11.5177 20 12.07V12.9994C19.9977 16.9852 17.3741 20.4948 13.5518 21.6249C9.72957 22.7551 5.61926 21.2365 3.44986 17.8928C1.28047 14.5491 1.56878 10.1767 4.15845 7.14679Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -65,7 +65,7 @@ exports[` should render CheckCircleIcon 1`] = ` d="M22.7071 4.70711C23.0976 4.31658 23.0976 3.68342 22.7071 3.29289C22.3166 2.90237 21.6834 2.90237 21.2929 3.29289L11 13.5858L8.70711 11.2929C8.31658 10.9024 7.68342 10.9024 7.29289 11.2929C6.90237 11.6834 6.90237 12.3166 7.29289 12.7071L10.2929 15.7071C10.6834 16.0976 11.3166 16.0976 11.7071 15.7071L22.7071 4.70711Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -79,7 +79,7 @@ exports[` should render CheckCircleIcon 1`] = ` fill={4294967295} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CheckIcon/__snapshots__/CheckIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CheckIcon/__snapshots__/CheckIcon.native.test.tsx.snap index daf6373ae81..4775337d594 100644 --- a/packages/blade/src/components/Icons/CheckIcon/__snapshots__/CheckIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CheckIcon/__snapshots__/CheckIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CheckIcon 1`] = ` should render CheckIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CheckIcon 1`] = ` should render CheckIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/CheckSquareIcon/__snapshots__/CheckSquareIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CheckSquareIcon/__snapshots__/CheckSquareIcon.native.test.tsx.snap index 9ac46306668..47780a52e62 100644 --- a/packages/blade/src/components/Icons/CheckSquareIcon/__snapshots__/CheckSquareIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CheckSquareIcon/__snapshots__/CheckSquareIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CheckSquareIcon 1`] = ` should render CheckSquareIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CheckSquareIcon 1`] = ` should render CheckSquareIcon 1`] = ` d="M3 5C3 4.44772 3.44772 4 4 4H15C15.5523 4 16 3.55228 16 3C16 2.44772 15.5523 2 15 2H4C2.34315 2 1 3.34315 1 5V19C1 20.6569 2.34315 22 4 22H18C19.6569 22 21 20.6569 21 19V12C21 11.4477 20.5523 11 20 11C19.4477 11 19 11.4477 19 12V19C19 19.5523 18.5523 20 18 20H4C3.44772 20 3 19.5523 3 19V5Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render CheckSquareIcon 1`] = ` d="M11.7071 14.7071L22.7071 3.70711C23.0976 3.31658 23.0976 2.68342 22.7071 2.29289C22.3166 1.90237 21.6834 1.90237 21.2929 2.29289L11 12.5858L8.70711 10.2929C8.31658 9.90237 7.68342 9.90237 7.29289 10.2929C6.90237 10.6834 6.90237 11.3166 7.29289 11.7071L10.2929 14.7071C10.6834 15.0976 11.3166 15.0976 11.7071 14.7071Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ChevronDownIcon/__snapshots__/ChevronDownIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ChevronDownIcon/__snapshots__/ChevronDownIcon.native.test.tsx.snap index c9c71d68153..7b2b6442402 100644 --- a/packages/blade/src/components/Icons/ChevronDownIcon/__snapshots__/ChevronDownIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ChevronDownIcon/__snapshots__/ChevronDownIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ChevronDownIcon 1`] = ` should render ChevronDownIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ChevronDownIcon 1`] = ` should render ChevronDownIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ChevronLeftIcon/__snapshots__/ChevronLeftIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ChevronLeftIcon/__snapshots__/ChevronLeftIcon.native.test.tsx.snap index cd56e660edb..ea100cd7910 100644 --- a/packages/blade/src/components/Icons/ChevronLeftIcon/__snapshots__/ChevronLeftIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ChevronLeftIcon/__snapshots__/ChevronLeftIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ChevronLeftIcon 1`] = ` should render ChevronLeftIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ChevronLeftIcon 1`] = ` should render ChevronLeftIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ChevronRightIcon/__snapshots__/ChevronRightIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ChevronRightIcon/__snapshots__/ChevronRightIcon.native.test.tsx.snap index 2d169b48d9e..41d4b311f99 100644 --- a/packages/blade/src/components/Icons/ChevronRightIcon/__snapshots__/ChevronRightIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ChevronRightIcon/__snapshots__/ChevronRightIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ChevronRightIcon 1`] = ` should render ChevronRightIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ChevronRightIcon 1`] = ` should render ChevronRightIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ChevronUpIcon/__snapshots__/ChevronUpIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ChevronUpIcon/__snapshots__/ChevronUpIcon.native.test.tsx.snap index 81720ad7fed..3e6918bdba4 100644 --- a/packages/blade/src/components/Icons/ChevronUpIcon/__snapshots__/ChevronUpIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ChevronUpIcon/__snapshots__/ChevronUpIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ChevronUpIcon 1`] = ` should render ChevronUpIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ChevronUpIcon 1`] = ` should render ChevronUpIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ChevronsDownIcon/__snapshots__/ChevronsDownIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ChevronsDownIcon/__snapshots__/ChevronsDownIcon.native.test.tsx.snap index 82d93893cca..177be455c5d 100644 --- a/packages/blade/src/components/Icons/ChevronsDownIcon/__snapshots__/ChevronsDownIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ChevronsDownIcon/__snapshots__/ChevronsDownIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ChevronsDownIcon 1`] = ` should render ChevronsDownIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ChevronsDownIcon 1`] = ` should render ChevronsDownIcon 1`] = ` d="M7.70711 5.29289C7.31658 4.90237 6.68342 4.90237 6.29289 5.29289C5.90237 5.68342 5.90237 6.31658 6.29289 6.70711L11.2929 11.7071C11.6834 12.0976 12.3166 12.0976 12.7071 11.7071L17.7071 6.70711C18.0976 6.31658 18.0976 5.68342 17.7071 5.29289C17.3166 4.90237 16.6834 4.90237 16.2929 5.29289L12 9.58579L7.70711 5.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render ChevronsDownIcon 1`] = ` d="M7.70711 12.2929C7.31658 11.9024 6.68342 11.9024 6.29289 12.2929C5.90237 12.6834 5.90237 13.3166 6.29289 13.7071L11.2929 18.7071C11.6834 19.0976 12.3166 19.0976 12.7071 18.7071L17.7071 13.7071C18.0976 13.3166 18.0976 12.6834 17.7071 12.2929C17.3166 11.9024 16.6834 11.9024 16.2929 12.2929L12 16.5858L7.70711 12.2929Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ChevronsLeftIcon/__snapshots__/ChevronsLeftIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ChevronsLeftIcon/__snapshots__/ChevronsLeftIcon.native.test.tsx.snap index 875b23e97c2..ada19c4fba6 100644 --- a/packages/blade/src/components/Icons/ChevronsLeftIcon/__snapshots__/ChevronsLeftIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ChevronsLeftIcon/__snapshots__/ChevronsLeftIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ChevronsLeftIcon 1`] = ` should render ChevronsLeftIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ChevronsLeftIcon 1`] = ` should render ChevronsLeftIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ChevronsRightIcon/__snapshots__/ChevronsRightIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ChevronsRightIcon/__snapshots__/ChevronsRightIcon.native.test.tsx.snap index d035c2bb7c8..1383535db56 100644 --- a/packages/blade/src/components/Icons/ChevronsRightIcon/__snapshots__/ChevronsRightIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ChevronsRightIcon/__snapshots__/ChevronsRightIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ChevronsRightIcon 1`] = ` should render ChevronsRightIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ChevronsRightIcon 1`] = ` should render ChevronsRightIcon 1`] = ` d="M6.70711 6.29289C6.31658 5.90237 5.68342 5.90237 5.29289 6.29289C4.90237 6.68342 4.90237 7.31658 5.29289 7.70711L9.58579 12L5.29289 16.2929C4.90237 16.6834 4.90237 17.3166 5.29289 17.7071C5.68342 18.0976 6.31658 18.0976 6.70711 17.7071L11.7071 12.7071C12.0976 12.3166 12.0976 11.6834 11.7071 11.2929L6.70711 6.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render ChevronsRightIcon 1`] = ` d="M13.7071 6.29289C13.3166 5.90237 12.6834 5.90237 12.2929 6.29289C11.9024 6.68342 11.9024 7.31658 12.2929 7.70711L16.5858 12L12.2929 16.2929C11.9024 16.6834 11.9024 17.3166 12.2929 17.7071C12.6834 18.0976 13.3166 18.0976 13.7071 17.7071L18.7071 12.7071C19.0976 12.3166 19.0976 11.6834 18.7071 11.2929L13.7071 6.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ChevronsUpIcon/__snapshots__/ChevronsUpIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ChevronsUpIcon/__snapshots__/ChevronsUpIcon.native.test.tsx.snap index 8877c668126..7bbd6dd3c05 100644 --- a/packages/blade/src/components/Icons/ChevronsUpIcon/__snapshots__/ChevronsUpIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ChevronsUpIcon/__snapshots__/ChevronsUpIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ChevronsUpIcon 1`] = ` should render ChevronsUpIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ChevronsUpIcon 1`] = ` should render ChevronsUpIcon 1`] = ` d="M12.7071 5.29289C12.3166 4.90237 11.6834 4.90237 11.2929 5.29289L6.29289 10.2929C5.90237 10.6834 5.90237 11.3166 6.29289 11.7071C6.68342 12.0976 7.31658 12.0976 7.70711 11.7071L12 7.41421L16.2929 11.7071C16.6834 12.0976 17.3166 12.0976 17.7071 11.7071C18.0976 11.3166 18.0976 10.6834 17.7071 10.2929L12.7071 5.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render ChevronsUpIcon 1`] = ` d="M17.7071 17.2929L12.7071 12.2929C12.3166 11.9024 11.6834 11.9024 11.2929 12.2929L6.29289 17.2929C5.90237 17.6834 5.90237 18.3166 6.29289 18.7071C6.68342 19.0976 7.31658 19.0976 7.70711 18.7071L12 14.4142L16.2929 18.7071C16.6834 19.0976 17.3166 19.0976 17.7071 18.7071C18.0976 18.3166 18.0976 17.6834 17.7071 17.2929Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ChromeIcon/__snapshots__/ChromeIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ChromeIcon/__snapshots__/ChromeIcon.native.test.tsx.snap index 9de125ff2da..e023fbaa3fc 100644 --- a/packages/blade/src/components/Icons/ChromeIcon/__snapshots__/ChromeIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ChromeIcon/__snapshots__/ChromeIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ChromeIcon 1`] = ` should render ChromeIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ChromeIcon 1`] = ` should render ChromeIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/CircleIcon/__snapshots__/CircleIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CircleIcon/__snapshots__/CircleIcon.native.test.tsx.snap index 1ce4c25c212..bab01824dd5 100644 --- a/packages/blade/src/components/Icons/CircleIcon/__snapshots__/CircleIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CircleIcon/__snapshots__/CircleIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CircleIcon 1`] = ` should render CircleIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CircleIcon 1`] = ` should render CircleIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ClipboardIcon/__snapshots__/ClipboardIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ClipboardIcon/__snapshots__/ClipboardIcon.native.test.tsx.snap index eaf4e574215..902e0df028d 100644 --- a/packages/blade/src/components/Icons/ClipboardIcon/__snapshots__/ClipboardIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ClipboardIcon/__snapshots__/ClipboardIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ClipboardIcon 1`] = ` should render ClipboardIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ClipboardIcon 1`] = ` should render ClipboardIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ClockIcon/__snapshots__/ClockIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ClockIcon/__snapshots__/ClockIcon.native.test.tsx.snap index 165a33fdd33..3bc3c48805f 100644 --- a/packages/blade/src/components/Icons/ClockIcon/__snapshots__/ClockIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ClockIcon/__snapshots__/ClockIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ClockIcon 1`] = ` should render ClockIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ClockIcon 1`] = ` should render ClockIcon 1`] = ` d="M13 6a1 1 0 1 0-2 0v6a1 1 0 0 0 .293.707l3 3a1 1 0 0 0 1.414-1.414L13 11.586V6Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render ClockIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/CloseIcon/__snapshots__/CloseIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CloseIcon/__snapshots__/CloseIcon.native.test.tsx.snap index 440494c8b30..0de5d1f7429 100644 --- a/packages/blade/src/components/Icons/CloseIcon/__snapshots__/CloseIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CloseIcon/__snapshots__/CloseIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CloseIcon 1`] = ` should render CloseIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CloseIcon 1`] = ` should render CloseIcon 1`] = ` d="M18.7071 6.70711C19.0976 6.31658 19.0976 5.68342 18.7071 5.29289C18.3166 4.90237 17.6834 4.90237 17.2929 5.29289L12 10.5858L6.70711 5.29289C6.31658 4.90237 5.68342 4.90237 5.29289 5.29289C4.90237 5.68342 4.90237 6.31658 5.29289 6.70711L10.5858 12L5.29289 17.2929C4.90237 17.6834 4.90237 18.3166 5.29289 18.7071C5.68342 19.0976 6.31658 19.0976 6.70711 18.7071L12 13.4142L17.2929 18.7071C17.6834 19.0976 18.3166 19.0976 18.7071 18.7071C19.0976 18.3166 19.0976 17.6834 18.7071 17.2929L13.4142 12L18.7071 6.70711Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CloudDrizzleIcon/__snapshots__/CloudDrizzleIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CloudDrizzleIcon/__snapshots__/CloudDrizzleIcon.native.test.tsx.snap index 496abaad02c..b77b3d71cb1 100644 --- a/packages/blade/src/components/Icons/CloudDrizzleIcon/__snapshots__/CloudDrizzleIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CloudDrizzleIcon/__snapshots__/CloudDrizzleIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CloudDrizzleIcon 1`] = ` should render CloudDrizzleIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CloudDrizzleIcon 1`] = ` should render CloudDrizzleIcon 1`] = ` d="M9.50019 0.0145815C5.59012 -0.205596 1.9865 2.12799 0.587786 5.78596C-0.810924 9.44392 0.316386 13.5865 3.37582 16.0313C3.80727 16.376 4.43653 16.3058 4.7813 15.8743C5.12607 15.4429 5.0558 14.8136 4.62435 14.4688C2.24479 12.5673 1.36799 9.34535 2.45588 6.50026C3.54376 3.65518 6.34658 1.84017 9.38774 2.01142C12.4289 2.18267 15.0102 4.30086 15.7718 7.25009C15.8859 7.69159 16.2841 8.00006 16.7401 8.00006H17.9993C19.8914 8.00247 21.5231 9.33036 21.9098 11.1826C22.2965 13.035 21.3323 14.9049 19.5989 15.6641C19.093 15.8856 18.8625 16.4753 19.0841 16.9812C19.3056 17.4871 19.8954 17.7176 20.4013 17.4961C23.0013 16.3573 24.4476 13.5524 23.8676 10.7739C23.2875 7.99532 20.8397 6.0034 18.0013 6.00006H17.4796C16.2801 2.60323 13.1473 0.219954 9.50019 0.0145815Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -65,7 +65,7 @@ exports[` should render CloudDrizzleIcon 1`] = ` d="M8 12.0001C8.55229 12.0001 9 12.4478 9 13.0001V15.0001C9 15.5523 8.55229 16.0001 8 16.0001C7.44772 16.0001 7 15.5523 7 15.0001V13.0001C7 12.4478 7.44772 12.0001 8 12.0001Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -74,7 +74,7 @@ exports[` should render CloudDrizzleIcon 1`] = ` d="M8 18.0001C8.55229 18.0001 9 18.4478 9 19.0001V21.0001C9 21.5523 8.55229 22.0001 8 22.0001C7.44772 22.0001 7 21.5523 7 21.0001V19.0001C7 18.4478 7.44772 18.0001 8 18.0001Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -83,7 +83,7 @@ exports[` should render CloudDrizzleIcon 1`] = ` d="M17 19.0001C17 18.4478 16.5523 18.0001 16 18.0001C15.4477 18.0001 15 18.4478 15 19.0001V21.0001C15 21.5523 15.4477 22.0001 16 22.0001C16.5523 22.0001 17 21.5523 17 21.0001V19.0001Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -92,7 +92,7 @@ exports[` should render CloudDrizzleIcon 1`] = ` d="M16 12.0001C16.5523 12.0001 17 12.4478 17 13.0001V15.0001C17 15.5523 16.5523 16.0001 16 16.0001C15.4477 16.0001 15 15.5523 15 15.0001V13.0001C15 12.4478 15.4477 12.0001 16 12.0001Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -101,7 +101,7 @@ exports[` should render CloudDrizzleIcon 1`] = ` d="M13 21.0001C13 20.4478 12.5523 20.0001 12 20.0001C11.4477 20.0001 11 20.4478 11 21.0001V23.0001C11 23.5523 11.4477 24.0001 12 24.0001C12.5523 24.0001 13 23.5523 13 23.0001V21.0001Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -110,7 +110,7 @@ exports[` should render CloudDrizzleIcon 1`] = ` d="M12 14.0001C12.5523 14.0001 13 14.4478 13 15.0001V17.0001C13 17.5523 12.5523 18.0001 12 18.0001C11.4477 18.0001 11 17.5523 11 17.0001V15.0001C11 14.4478 11.4477 14.0001 12 14.0001Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -124,7 +124,7 @@ exports[` should render CloudDrizzleIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CloudIcon/__snapshots__/CloudIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CloudIcon/__snapshots__/CloudIcon.native.test.tsx.snap index 9bdc46f0ee5..e8c58cca4bd 100644 --- a/packages/blade/src/components/Icons/CloudIcon/__snapshots__/CloudIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CloudIcon/__snapshots__/CloudIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CloudIcon 1`] = ` should render CloudIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CloudIcon 1`] = ` should render CloudIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -73,7 +73,7 @@ exports[` should render CloudIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CloudLightningIcon/__snapshots__/CloudLightningIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CloudLightningIcon/__snapshots__/CloudLightningIcon.native.test.tsx.snap index e4f15e6c961..eb18f3871e7 100644 --- a/packages/blade/src/components/Icons/CloudLightningIcon/__snapshots__/CloudLightningIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CloudLightningIcon/__snapshots__/CloudLightningIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CloudLightningIcon 1`] = ` should render CloudLightningIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CloudLightningIcon 1`] = ` should render CloudLightningIcon 1`] = ` d="M0.587786 5.78596C1.9865 2.12799 5.59012 -0.205596 9.50019 0.0145815C13.1473 0.219954 16.2801 2.60323 17.4796 6.00006H18.0013C20.8397 6.0034 23.2875 7.99532 23.8676 10.7739C24.4476 13.5524 23.0013 16.3573 20.4013 17.4961C19.8954 17.7176 19.3056 17.4871 19.0841 16.9812C18.8625 16.4753 19.093 15.8856 19.5989 15.6641C21.3323 14.9049 22.2965 13.035 21.9098 11.1826C21.5231 9.33036 19.8914 8.00247 17.9993 8.00006H16.7401C16.2841 8.00006 15.8859 7.69159 15.7718 7.25009C15.0102 4.30086 12.4289 2.18267 9.38774 2.01142C6.34658 1.84017 3.54376 3.65518 2.45588 6.50026C1.36799 9.34535 2.24479 12.5673 4.62435 14.4688C5.0558 14.8136 5.12607 15.4429 4.7813 15.8743C4.43653 16.3058 3.80727 16.376 3.37582 16.0313C0.316386 13.5865 -0.810924 9.44392 0.587786 5.78596Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -65,7 +65,7 @@ exports[` should render CloudLightningIcon 1`] = ` d="M13.8321 11.5547C14.1384 11.0952 14.0142 10.4743 13.5547 10.168C13.0952 9.86164 12.4743 9.98582 12.168 10.4453L8.16795 16.4453C7.96338 16.7522 7.94431 17.1467 8.11833 17.4719C8.29235 17.7971 8.63121 18 9 18H13.1315L10.168 22.4453C9.8616 22.9049 9.98577 23.5257 10.4453 23.8321C10.9048 24.1384 11.5257 24.0143 11.8321 23.5547L15.8321 17.5547C16.0366 17.2479 16.0557 16.8533 15.8817 16.5282C15.7077 16.203 15.3688 16 15 16H10.8685L13.8321 11.5547Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -79,7 +79,7 @@ exports[` should render CloudLightningIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CloudOffIcon/__snapshots__/CloudOffIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CloudOffIcon/__snapshots__/CloudOffIcon.native.test.tsx.snap index 440f4371203..a1a0ec02f4f 100644 --- a/packages/blade/src/components/Icons/CloudOffIcon/__snapshots__/CloudOffIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CloudOffIcon/__snapshots__/CloudOffIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CloudOffIcon 1`] = ` should render CloudOffIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CloudOffIcon 1`] = ` should render CloudOffIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -73,7 +73,7 @@ exports[` should render CloudOffIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CloudRainIcon/__snapshots__/CloudRainIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CloudRainIcon/__snapshots__/CloudRainIcon.native.test.tsx.snap index 7859ca4f782..5726f305b23 100644 --- a/packages/blade/src/components/Icons/CloudRainIcon/__snapshots__/CloudRainIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CloudRainIcon/__snapshots__/CloudRainIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CloudRainIcon 1`] = ` should render CloudRainIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CloudRainIcon 1`] = ` should render CloudRainIcon 1`] = ` d="M9.50019 0.0145815C5.59012 -0.205596 1.9865 2.12799 0.587786 5.78596C-0.810924 9.44392 0.316386 13.5865 3.37582 16.0313C3.80727 16.376 4.43653 16.3058 4.7813 15.8743C5.12607 15.4429 5.0558 14.8136 4.62435 14.4688C2.24479 12.5673 1.36799 9.34535 2.45588 6.50026C3.54376 3.65518 6.34658 1.84017 9.38774 2.01142C12.4289 2.18267 15.0102 4.30086 15.7718 7.25009C15.8859 7.69159 16.2841 8.00006 16.7401 8.00006H17.9993C19.8914 8.00247 21.5231 9.33036 21.9098 11.1826C22.2965 13.035 21.3323 14.9049 19.5989 15.6641C19.093 15.8856 18.8625 16.4753 19.0841 16.9812C19.3056 17.4871 19.8954 17.7176 20.4013 17.4961C23.0013 16.3573 24.4476 13.5524 23.8676 10.7739C23.2875 7.99532 20.8397 6.0034 18.0013 6.00006H17.4796C16.2801 2.60323 13.1473 0.219954 9.50019 0.0145815Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -65,7 +65,7 @@ exports[` should render CloudRainIcon 1`] = ` d="M9.00006 13.0001C9.00006 12.4478 8.55235 12.0001 8.00006 12.0001C7.44778 12.0001 7.00006 12.4478 7.00006 13.0001V21.0001C7.00006 21.5523 7.44778 22.0001 8.00006 22.0001C8.55235 22.0001 9.00006 21.5523 9.00006 21.0001V13.0001Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -74,7 +74,7 @@ exports[` should render CloudRainIcon 1`] = ` d="M17.0001 13.0001C17.0001 12.4478 16.5523 12.0001 16.0001 12.0001C15.4478 12.0001 15.0001 12.4478 15.0001 13.0001V21.0001C15.0001 21.5523 15.4478 22.0001 16.0001 22.0001C16.5523 22.0001 17.0001 21.5523 17.0001 21.0001V13.0001Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -83,7 +83,7 @@ exports[` should render CloudRainIcon 1`] = ` d="M12.0001 14.0001C12.5523 14.0001 13.0001 14.4478 13.0001 15.0001V23.0001C13.0001 23.5523 12.5523 24.0001 12.0001 24.0001C11.4478 24.0001 11.0001 23.5523 11.0001 23.0001V15.0001C11.0001 14.4478 11.4478 14.0001 12.0001 14.0001Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -97,7 +97,7 @@ exports[` should render CloudRainIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CloudSnowIcon/__snapshots__/CloudSnowIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CloudSnowIcon/__snapshots__/CloudSnowIcon.native.test.tsx.snap index 26c3ab900ad..7172169fb3b 100644 --- a/packages/blade/src/components/Icons/CloudSnowIcon/__snapshots__/CloudSnowIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CloudSnowIcon/__snapshots__/CloudSnowIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CloudSnowIcon 1`] = ` should render CloudSnowIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CloudSnowIcon 1`] = ` should render CloudSnowIcon 1`] = ` d="M8.08235 1.04655C9.50123 0.902065 10.9341 1.09686 12.2629 1.61487C13.5918 2.13288 14.7784 2.95928 15.7252 4.02595C16.498 4.89662 17.0928 5.90703 17.4793 6.99996H18.0012C19.3783 7.00158 20.713 7.47691 21.7812 8.34616C22.8494 9.21541 23.586 10.4257 23.8675 11.7738C24.1489 13.1219 23.958 14.5258 23.3268 15.7498C22.6957 16.9738 21.6626 17.9435 20.4011 18.496C19.8953 18.7175 19.3055 18.487 19.084 17.9811C18.8624 17.4752 19.0929 16.8855 19.5988 16.664C20.4398 16.2956 21.1285 15.6492 21.5493 14.8332C21.97 14.0172 22.0973 13.0812 21.9097 12.1825C21.722 11.2838 21.231 10.4769 20.5188 9.89742C19.8068 9.31801 18.9172 9.00113 17.9992 8.99996H16.74C16.284 8.99996 15.8857 8.69149 15.7717 8.24999C15.4944 7.17595 14.9657 6.1832 14.2294 5.35357C13.493 4.52394 12.5701 3.88119 11.5365 3.47829C10.503 3.07539 9.38853 2.92388 8.28496 3.03626C7.18139 3.14863 6.12032 3.52167 5.18922 4.12462C4.25812 4.72757 3.48364 5.54317 2.92963 6.50419C2.37561 7.46521 2.05792 8.54414 2.00275 9.65205C1.94757 10.76 2.15648 11.8651 2.61226 12.8764C3.06805 13.8877 3.75765 14.7763 4.62424 15.4687C5.05569 15.8135 5.12596 16.4428 4.78119 16.8742C4.43642 17.3057 3.80716 17.3759 3.37571 17.0312C2.26153 16.1408 1.3749 14.9985 0.788889 13.6982C0.202881 12.3979 -0.0657213 10.977 0.00522189 9.55257C0.0761651 8.12812 0.484622 6.74092 1.19693 5.50532C1.90923 4.26972 2.90498 3.22109 4.10212 2.44586C5.29925 1.67064 6.66347 1.19103 8.08235 1.04655Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -65,7 +65,7 @@ exports[` should render CloudSnowIcon 1`] = ` d="M7 16C7 15.4477 7.44772 15 8 15H8.01C8.56228 15 9.01 15.4477 9.01 16C9.01 16.5522 8.56228 17 8.01 17H8C7.44772 17 7 16.5522 7 16Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -74,7 +74,7 @@ exports[` should render CloudSnowIcon 1`] = ` d="M8 19C7.44772 19 7 19.4477 7 20C7 20.5522 7.44772 21 8 21H8.01C8.56228 21 9.01 20.5522 9.01 20C9.01 19.4477 8.56228 19 8.01 19H8Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -83,7 +83,7 @@ exports[` should render CloudSnowIcon 1`] = ` d="M11 18C11 17.4477 11.4477 17 12 17H12.01C12.5623 17 13.01 17.4477 13.01 18C13.01 18.5522 12.5623 19 12.01 19H12C11.4477 19 11 18.5522 11 18Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -92,7 +92,7 @@ exports[` should render CloudSnowIcon 1`] = ` d="M12 21C11.4477 21 11 21.4477 11 22C11 22.5522 11.4477 23 12 23H12.01C12.5623 23 13.01 22.5522 13.01 22C13.01 21.4477 12.5623 21 12.01 21H12Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -101,7 +101,7 @@ exports[` should render CloudSnowIcon 1`] = ` d="M15 16C15 15.4477 15.4477 15 16 15H16.01C16.5623 15 17.01 15.4477 17.01 16C17.01 16.5522 16.5623 17 16.01 17H16C15.4477 17 15 16.5522 15 16Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -110,7 +110,7 @@ exports[` should render CloudSnowIcon 1`] = ` d="M16 19C15.4477 19 15 19.4477 15 20C15 20.5522 15.4477 21 16 21H16.01C16.5623 21 17.01 20.5522 17.01 20C17.01 19.4477 16.5623 19 16.01 19H16Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -124,7 +124,7 @@ exports[` should render CloudSnowIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CodepenIcon/__snapshots__/CodepenIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CodepenIcon/__snapshots__/CodepenIcon.native.test.tsx.snap index 9948a012ef1..80c415d609f 100644 --- a/packages/blade/src/components/Icons/CodepenIcon/__snapshots__/CodepenIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CodepenIcon/__snapshots__/CodepenIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CodepenIcon 1`] = ` should render CodepenIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CodepenIcon 1`] = ` should render CodepenIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/CoinsIcon/__snapshots__/CoinsIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CoinsIcon/__snapshots__/CoinsIcon.native.test.tsx.snap index 3183c9beb87..153978ddbab 100644 --- a/packages/blade/src/components/Icons/CoinsIcon/__snapshots__/CoinsIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CoinsIcon/__snapshots__/CoinsIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CoinsIcon 1`] = ` should render CoinsIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CoinsIcon 1`] = ` should render CoinsIcon 1`] = ` d="M15 4C10.58 4 7 7.58 7 12C7 16.42 10.58 20 15 20C19.42 20 23 16.42 23 12C23 7.58 19.42 4 15 4ZM15 18C11.69 18 9 15.31 9 12C9 8.69 11.69 6 15 6C18.31 6 21 8.69 21 12C21 15.31 18.31 18 15 18ZM3 12C3 9.61 4.4 7.54 6.43 6.58C6.77 6.42 7 6.11 7 5.74V5.55C7 4.87 6.29 4.44 5.68 4.73C2.92 5.99 1 8.77 1 12C1 15.23 2.92 18.01 5.68 19.27C6.29 19.55 7 19.13 7 18.45V18.27C7 17.9 6.77 17.58 6.43 17.42C4.4 16.46 3 14.39 3 12Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CommandIcon/__snapshots__/CommandIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CommandIcon/__snapshots__/CommandIcon.native.test.tsx.snap index fbca29f82a0..ae33f89278b 100644 --- a/packages/blade/src/components/Icons/CommandIcon/__snapshots__/CommandIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CommandIcon/__snapshots__/CommandIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CommandIcon 1`] = ` should render CommandIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CommandIcon 1`] = ` should render CommandIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/CompassIcon/__snapshots__/CompassIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CompassIcon/__snapshots__/CompassIcon.native.test.tsx.snap index f8209c299a5..4020a665702 100644 --- a/packages/blade/src/components/Icons/CompassIcon/__snapshots__/CompassIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CompassIcon/__snapshots__/CompassIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CompassIcon 1`] = ` should render CompassIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CompassIcon 1`] = ` should render CompassIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render CompassIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/CopyIcon/__snapshots__/CopyIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CopyIcon/__snapshots__/CopyIcon.native.test.tsx.snap index 96902b38ac6..7e73beb6e23 100644 --- a/packages/blade/src/components/Icons/CopyIcon/__snapshots__/CopyIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CopyIcon/__snapshots__/CopyIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CopyIcon 1`] = ` should render CopyIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CopyIcon 1`] = ` should render CopyIcon 1`] = ` d="M3 4C3 3.44772 3.44772 3 4 3H13C13.5523 3 14 3.44772 14 4V5C14 5.55228 14.4477 6 15 6C15.5523 6 16 5.55228 16 5V4C16 2.34315 14.6569 1 13 1H4C2.34315 1 1 2.34315 1 4V13C1 14.6569 2.34315 16 4 16H5C5.55228 16 6 15.5523 6 15C6 14.4477 5.55228 14 5 14H4C3.44772 14 3 13.5523 3 13V4Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render CopyIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/CornerDownLeftIcon/__snapshots__/CornerDownLeftIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CornerDownLeftIcon/__snapshots__/CornerDownLeftIcon.native.test.tsx.snap index 6d19a974df6..409c4002b0f 100644 --- a/packages/blade/src/components/Icons/CornerDownLeftIcon/__snapshots__/CornerDownLeftIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CornerDownLeftIcon/__snapshots__/CornerDownLeftIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CornerDownLeftIcon 1`] = ` should render CornerDownLeftIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CornerDownLeftIcon 1`] = ` should render CornerDownLeftIcon 1`] = ` d="M21 4C21 3.44772 20.5523 3 20 3C19.4477 3 19 3.44772 19 4V11C19 12.6569 17.6569 14 16 14H6.41421L9.70711 10.7071C10.0976 10.3166 10.0976 9.68342 9.70711 9.29289C9.31658 8.90237 8.68342 8.90237 8.29289 9.29289L3.29289 14.2929C2.90237 14.6834 2.90237 15.3166 3.29289 15.7071L8.29289 20.7071C8.68342 21.0976 9.31658 21.0976 9.70711 20.7071C10.0976 20.3166 10.0976 19.6834 9.70711 19.2929L6.41421 16H16C18.7614 16 21 13.7614 21 11V4Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CornerDownRightIcon/__snapshots__/CornerDownRightIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CornerDownRightIcon/__snapshots__/CornerDownRightIcon.native.test.tsx.snap index 8600c8662b0..fe8bd3c288a 100644 --- a/packages/blade/src/components/Icons/CornerDownRightIcon/__snapshots__/CornerDownRightIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CornerDownRightIcon/__snapshots__/CornerDownRightIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CornerDownRightIcon 1`] = ` should render CornerDownRightIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CornerDownRightIcon 1`] = ` should render CornerDownRightIcon 1`] = ` d="M5 4C5 3.44772 4.55228 3 4 3C3.44772 3 3 3.44772 3 4V11C3 13.7614 5.23858 16 8 16H17.5858L14.2929 19.2929C13.9024 19.6834 13.9024 20.3166 14.2929 20.7071C14.6834 21.0976 15.3166 21.0976 15.7071 20.7071L20.7071 15.7071C21.0976 15.3166 21.0976 14.6834 20.7071 14.2929L15.7071 9.29289C15.3166 8.90237 14.6834 8.90237 14.2929 9.29289C13.9024 9.68342 13.9024 10.3166 14.2929 10.7071L17.5858 14H8C6.34315 14 5 12.6569 5 11V4Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CornerLeftDownIcon/__snapshots__/CornerLeftDownIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CornerLeftDownIcon/__snapshots__/CornerLeftDownIcon.native.test.tsx.snap index a1c432c3731..9c53856a3f8 100644 --- a/packages/blade/src/components/Icons/CornerLeftDownIcon/__snapshots__/CornerLeftDownIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CornerLeftDownIcon/__snapshots__/CornerLeftDownIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CornerLeftDownIcon 1`] = ` should render CornerLeftDownIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CornerLeftDownIcon 1`] = ` should render CornerLeftDownIcon 1`] = ` d="M13 3C10.2386 3 8 5.23858 8 8V17.5858L4.70711 14.2929C4.31658 13.9024 3.68342 13.9024 3.29289 14.2929C2.90237 14.6834 2.90237 15.3166 3.29289 15.7071L8.29289 20.7071C8.68342 21.0976 9.31658 21.0976 9.70711 20.7071L14.7071 15.7071C15.0976 15.3166 15.0976 14.6834 14.7071 14.2929C14.3166 13.9024 13.6834 13.9024 13.2929 14.2929L10 17.5858V8C10 6.34315 11.3431 5 13 5H20C20.5523 5 21 4.55228 21 4C21 3.44772 20.5523 3 20 3H13Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CornerLeftUpIcon/__snapshots__/CornerLeftUpIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CornerLeftUpIcon/__snapshots__/CornerLeftUpIcon.native.test.tsx.snap index 1c9a94feb2e..e3ee8f26782 100644 --- a/packages/blade/src/components/Icons/CornerLeftUpIcon/__snapshots__/CornerLeftUpIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CornerLeftUpIcon/__snapshots__/CornerLeftUpIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CornerLeftUpIcon 1`] = ` should render CornerLeftUpIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CornerLeftUpIcon 1`] = ` should render CornerLeftUpIcon 1`] = ` d="M9.70711 3.29289C9.31658 2.90237 8.68342 2.90237 8.29289 3.29289L3.29289 8.29289C2.90237 8.68342 2.90237 9.31658 3.29289 9.70711C3.68342 10.0976 4.31658 10.0976 4.70711 9.70711L8 6.41421V16C8 18.7614 10.2386 21 13 21H20C20.5523 21 21 20.5523 21 20C21 19.4477 20.5523 19 20 19H13C11.3431 19 10 17.6569 10 16V6.41421L13.2929 9.70711C13.6834 10.0976 14.3166 10.0976 14.7071 9.70711C15.0976 9.31658 15.0976 8.68342 14.7071 8.29289L9.70711 3.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CornerRightDownIcon/__snapshots__/CornerRightDownIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CornerRightDownIcon/__snapshots__/CornerRightDownIcon.native.test.tsx.snap index 22c6589b043..b1b8f89a2ce 100644 --- a/packages/blade/src/components/Icons/CornerRightDownIcon/__snapshots__/CornerRightDownIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CornerRightDownIcon/__snapshots__/CornerRightDownIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CornerRightDownIcon 1`] = ` should render CornerRightDownIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CornerRightDownIcon 1`] = ` should render CornerRightDownIcon 1`] = ` d="M4 3C3.44772 3 3 3.44772 3 4C3 4.55228 3.44772 5 4 5H11C12.6569 5 14 6.34315 14 8V17.5858L10.7071 14.2929C10.3166 13.9024 9.68342 13.9024 9.29289 14.2929C8.90237 14.6834 8.90237 15.3166 9.29289 15.7071L14.2929 20.7071C14.6834 21.0976 15.3166 21.0976 15.7071 20.7071L20.7071 15.7071C21.0976 15.3166 21.0976 14.6834 20.7071 14.2929C20.3166 13.9024 19.6834 13.9024 19.2929 14.2929L16 17.5858V8C16 5.23858 13.7614 3 11 3H4Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CornerRightUpIcon/__snapshots__/CornerRightUpIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CornerRightUpIcon/__snapshots__/CornerRightUpIcon.native.test.tsx.snap index 11b734649a7..143d7f9fea2 100644 --- a/packages/blade/src/components/Icons/CornerRightUpIcon/__snapshots__/CornerRightUpIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CornerRightUpIcon/__snapshots__/CornerRightUpIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CornerRightUpIcon 1`] = ` should render CornerRightUpIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CornerRightUpIcon 1`] = ` should render CornerRightUpIcon 1`] = ` d="M15.7071 3.29289C15.3166 2.90237 14.6834 2.90237 14.2929 3.29289L9.29289 8.29289C8.90237 8.68342 8.90237 9.31658 9.29289 9.70711C9.68342 10.0976 10.3166 10.0976 10.7071 9.70711L14 6.41421V16C14 17.6569 12.6569 19 11 19H4C3.44772 19 3 19.4477 3 20C3 20.5523 3.44772 21 4 21H11C13.7614 21 16 18.7614 16 16V6.41421L19.2929 9.70711C19.6834 10.0976 20.3166 10.0976 20.7071 9.70711C21.0976 9.31658 21.0976 8.68342 20.7071 8.29289L15.7071 3.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CornerUpLeftIcon/__snapshots__/CornerUpLeftIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CornerUpLeftIcon/__snapshots__/CornerUpLeftIcon.native.test.tsx.snap index 13aeaf22353..7f1630c023c 100644 --- a/packages/blade/src/components/Icons/CornerUpLeftIcon/__snapshots__/CornerUpLeftIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CornerUpLeftIcon/__snapshots__/CornerUpLeftIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CornerUpLeftIcon 1`] = ` should render CornerUpLeftIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CornerUpLeftIcon 1`] = ` should render CornerUpLeftIcon 1`] = ` d="M9.70711 4.70711C10.0976 4.31658 10.0976 3.68342 9.70711 3.29289C9.31658 2.90237 8.68342 2.90237 8.29289 3.29289L3.29289 8.29289C2.90237 8.68342 2.90237 9.31658 3.29289 9.70711L8.29289 14.7071C8.68342 15.0976 9.31658 15.0976 9.70711 14.7071C10.0976 14.3166 10.0976 13.6834 9.70711 13.2929L6.41421 10H16C17.6569 10 19 11.3431 19 13V20C19 20.5523 19.4477 21 20 21C20.5523 21 21 20.5523 21 20V13C21 10.2386 18.7614 8 16 8H6.41421L9.70711 4.70711Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CornerUpRightIcon/__snapshots__/CornerUpRightIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CornerUpRightIcon/__snapshots__/CornerUpRightIcon.native.test.tsx.snap index bac23222bf8..2e90a62fab1 100644 --- a/packages/blade/src/components/Icons/CornerUpRightIcon/__snapshots__/CornerUpRightIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CornerUpRightIcon/__snapshots__/CornerUpRightIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CornerUpRightIcon 1`] = ` should render CornerUpRightIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CornerUpRightIcon 1`] = ` should render CornerUpRightIcon 1`] = ` d="M15.7071 3.29289C15.3166 2.90237 14.6834 2.90237 14.2929 3.29289C13.9024 3.68342 13.9024 4.31658 14.2929 4.70711L17.5858 8H8C5.23858 8 3 10.2386 3 13V20C3 20.5523 3.44772 21 4 21C4.55228 21 5 20.5523 5 20V13C5 11.3431 6.34315 10 8 10H17.5858L14.2929 13.2929C13.9024 13.6834 13.9024 14.3166 14.2929 14.7071C14.6834 15.0976 15.3166 15.0976 15.7071 14.7071L20.7071 9.70711C21.0976 9.31658 21.0976 8.68342 20.7071 8.29289L15.7071 3.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CpuIcon/__snapshots__/CpuIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CpuIcon/__snapshots__/CpuIcon.native.test.tsx.snap index b34ca0f5b0b..edb56f901b9 100644 --- a/packages/blade/src/components/Icons/CpuIcon/__snapshots__/CpuIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CpuIcon/__snapshots__/CpuIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CpuIcon 1`] = ` should render CpuIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CpuIcon 1`] = ` should render CpuIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -70,7 +70,7 @@ exports[` should render CpuIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -85,7 +85,7 @@ exports[` should render CpuIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CreditCardIcon/__snapshots__/CreditCardIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CreditCardIcon/__snapshots__/CreditCardIcon.native.test.tsx.snap index 87aac5d05e2..ba13214363d 100644 --- a/packages/blade/src/components/Icons/CreditCardIcon/__snapshots__/CreditCardIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CreditCardIcon/__snapshots__/CreditCardIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CreditCardIcon 1`] = ` should render CreditCardIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CreditCardIcon 1`] = ` should render CreditCardIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/CropIcon/__snapshots__/CropIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CropIcon/__snapshots__/CropIcon.native.test.tsx.snap index ae494f954b7..967deab2c80 100644 --- a/packages/blade/src/components/Icons/CropIcon/__snapshots__/CropIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CropIcon/__snapshots__/CropIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CropIcon 1`] = ` should render CropIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CropIcon 1`] = ` should render CropIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -73,7 +73,7 @@ exports[` should render CropIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/CrosshairIcon/__snapshots__/CrosshairIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CrosshairIcon/__snapshots__/CrosshairIcon.native.test.tsx.snap index 88831ce45fb..f963167368b 100644 --- a/packages/blade/src/components/Icons/CrosshairIcon/__snapshots__/CrosshairIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CrosshairIcon/__snapshots__/CrosshairIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CrosshairIcon 1`] = ` should render CrosshairIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CrosshairIcon 1`] = ` should render CrosshairIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/CustomersIcon/__snapshots__/CustomersIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CustomersIcon/__snapshots__/CustomersIcon.native.test.tsx.snap index 485a894e0a2..1a16aafe4bc 100644 --- a/packages/blade/src/components/Icons/CustomersIcon/__snapshots__/CustomersIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CustomersIcon/__snapshots__/CustomersIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CustomersIcon 1`] = ` should render CustomersIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CustomersIcon 1`] = ` should render CustomersIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/CutIcon/__snapshots__/CutIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/CutIcon/__snapshots__/CutIcon.native.test.tsx.snap index 730fb4828fe..3f1761b51bc 100644 --- a/packages/blade/src/components/Icons/CutIcon/__snapshots__/CutIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/CutIcon/__snapshots__/CutIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render CutIcon 1`] = ` should render CutIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render CutIcon 1`] = ` should render CutIcon 1`] = ` d="M6 9C7.65685 9 9 7.65685 9 6C9 4.34315 7.65685 3 6 3C4.34315 3 3 4.34315 3 6C3 7.65685 4.34315 9 6 9Z" fillRule={0} propList={ - Array [ + [ "fillRule", "stroke", "strokeWidth", @@ -75,7 +75,7 @@ exports[` should render CutIcon 1`] = ` d="M6 21C7.65685 21 9 19.6569 9 18C9 16.3431 7.65685 15 6 15C4.34315 15 3 16.3431 3 18C3 19.6569 4.34315 21 6 21Z" fillRule={0} propList={ - Array [ + [ "fillRule", "stroke", "strokeWidth", @@ -91,7 +91,7 @@ exports[` should render CutIcon 1`] = ` should render CutIcon 1`] = ` should render CutIcon 1`] = ` should render CutIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/DashboardIcon/__snapshots__/DashboardIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/DashboardIcon/__snapshots__/DashboardIcon.native.test.tsx.snap index f39d1646bac..f46563ef792 100644 --- a/packages/blade/src/components/Icons/DashboardIcon/__snapshots__/DashboardIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/DashboardIcon/__snapshots__/DashboardIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render DashboardIcon 1`] = ` should render DashboardIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render DashboardIcon 1`] = ` should render DashboardIcon 1`] = ` d="M19.7778 2H4.22222C3 2 2 3 2 4.22222V19.7778C2 21 3 22 4.22222 22H19.7778C21 22 22 21 22 19.7778V4.22222C22 3 21 2 19.7778 2ZM8.66667 17.5556H6.44444V9.77778H8.66667V17.5556ZM13.1111 17.5556H10.8889V6.44444H13.1111V17.5556ZM17.5556 17.5556H15.3333V13.1111H17.5556V17.5556Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/DeleteIcon/__snapshots__/DeleteIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/DeleteIcon/__snapshots__/DeleteIcon.native.test.tsx.snap index a25caa43cfd..0479481ac22 100644 --- a/packages/blade/src/components/Icons/DeleteIcon/__snapshots__/DeleteIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/DeleteIcon/__snapshots__/DeleteIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render DeleteIcon 1`] = ` should render DeleteIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render DeleteIcon 1`] = ` should render DeleteIcon 1`] = ` d="M18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L16.4142 12L18.7071 14.2929C19.0976 14.6834 19.0976 15.3166 18.7071 15.7071C18.3166 16.0976 17.6834 16.0976 17.2929 15.7071L15 13.4142L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071C10.9024 15.3166 10.9024 14.6834 11.2929 14.2929L13.5858 12L11.2929 9.70711C10.9024 9.31658 10.9024 8.68342 11.2929 8.29289C11.6834 7.90237 12.3166 7.90237 12.7071 8.29289L15 10.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render DeleteIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/DiscIcon/__snapshots__/DiscIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/DiscIcon/__snapshots__/DiscIcon.native.test.tsx.snap index ed51b7f0d8d..726ec06a0e1 100644 --- a/packages/blade/src/components/Icons/DiscIcon/__snapshots__/DiscIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/DiscIcon/__snapshots__/DiscIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render DiscIcon 1`] = ` should render DiscIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render DiscIcon 1`] = ` should render DiscIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render DiscIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/DollarIcon/__snapshots__/DollarIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/DollarIcon/__snapshots__/DollarIcon.native.test.tsx.snap index 6bdf89144b7..a0c80e10c34 100644 --- a/packages/blade/src/components/Icons/DollarIcon/__snapshots__/DollarIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/DollarIcon/__snapshots__/DollarIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render DollarIcon 1`] = ` should render DollarIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render DollarIcon 1`] = ` should render DollarIcon 1`] = ` d="M11.3963 21L11.4488 3H12.6824L12.6299 21H11.3963ZM14.8609 8.58281C14.7909 7.91719 14.5022 7.40156 13.9948 7.03594C13.4873 6.66563 12.8486 6.48047 12.0787 6.48047C11.5276 6.48047 11.0507 6.57422 10.6483 6.76172C10.2458 6.94453 9.93307 7.19766 9.70997 7.52109C9.49125 7.83984 9.38189 8.20313 9.38189 8.61094C9.38189 8.95313 9.45626 9.24844 9.60499 9.49688C9.75809 9.74531 9.95713 9.95391 10.2021 10.1227C10.4514 10.2867 10.7183 10.425 11.0026 10.5375C11.287 10.6453 11.5604 10.7344 11.8228 10.8047L13.1352 11.1703C13.5639 11.2828 14.0035 11.4352 14.4541 11.6273C14.9046 11.8195 15.3224 12.0727 15.7073 12.3867C16.0923 12.7008 16.4029 13.0898 16.6391 13.5539C16.8797 14.018 17 14.5734 17 15.2203C17 16.0359 16.8032 16.7602 16.4094 17.393C16.0201 18.0258 15.4536 18.525 14.71 18.8906C13.9707 19.2563 13.0761 19.4391 12.0262 19.4391C11.0201 19.4391 10.1496 19.268 9.4147 18.9258C8.67979 18.5836 8.10455 18.0984 7.68898 17.4703C7.2734 16.8375 7.04374 16.0875 7 15.2203H9.03412C9.07349 15.7406 9.23097 16.1742 9.50656 16.5211C9.78653 16.8633 10.143 17.1188 10.5761 17.2875C11.0136 17.4516 11.4926 17.5336 12.0131 17.5336C12.5862 17.5336 13.0958 17.4375 13.542 17.2453C13.9926 17.0484 14.3469 16.7766 14.605 16.4297C14.8631 16.0781 14.9921 15.668 14.9921 15.1992C14.9921 14.7727 14.8784 14.4234 14.6509 14.1516C14.4278 13.8797 14.1238 13.6547 13.7388 13.4766C13.3583 13.2984 12.9274 13.1414 12.4462 13.0055L10.8583 12.5414C9.78215 12.2273 8.92913 11.7656 8.29921 11.1563C7.67367 10.5469 7.36089 9.74063 7.36089 8.7375C7.36089 7.90781 7.57087 7.18359 7.99081 6.56484C8.41076 5.94609 8.97944 5.46563 9.69685 5.12344C10.4143 4.77656 11.2235 4.60313 12.1247 4.60313C13.0346 4.60313 13.8373 4.77422 14.5328 5.11641C15.2327 5.45859 15.7839 5.92969 16.1864 6.52969C16.5888 7.125 16.7988 7.80938 16.8163 8.58281H14.8609Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/DollarsIcon/__snapshots__/DollarsIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/DollarsIcon/__snapshots__/DollarsIcon.native.test.tsx.snap index 6624da8ad45..b952c888f14 100644 --- a/packages/blade/src/components/Icons/DollarsIcon/__snapshots__/DollarsIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/DollarsIcon/__snapshots__/DollarsIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render DollarsIcon 1`] = ` should render DollarsIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render DollarsIcon 1`] = ` should render DollarsIcon 1`] = ` d="M11.3963 21L11.4488 3H12.6824L12.6299 21H11.3963ZM14.8609 8.58281C14.7909 7.91719 14.5022 7.40156 13.9948 7.03594C13.4873 6.66563 12.8486 6.48047 12.0787 6.48047C11.5276 6.48047 11.0507 6.57422 10.6483 6.76172C10.2458 6.94453 9.93307 7.19766 9.70997 7.52109C9.49125 7.83984 9.38189 8.20313 9.38189 8.61094C9.38189 8.95313 9.45626 9.24844 9.60499 9.49688C9.75809 9.74531 9.95713 9.95391 10.2021 10.1227C10.4514 10.2867 10.7183 10.425 11.0026 10.5375C11.287 10.6453 11.5604 10.7344 11.8228 10.8047L13.1352 11.1703C13.5639 11.2828 14.0035 11.4352 14.4541 11.6273C14.9046 11.8195 15.3224 12.0727 15.7073 12.3867C16.0923 12.7008 16.4029 13.0898 16.6391 13.5539C16.8797 14.018 17 14.5734 17 15.2203C17 16.0359 16.8032 16.7602 16.4094 17.393C16.0201 18.0258 15.4536 18.525 14.71 18.8906C13.9707 19.2563 13.0761 19.4391 12.0262 19.4391C11.0201 19.4391 10.1496 19.268 9.4147 18.9258C8.67979 18.5836 8.10455 18.0984 7.68898 17.4703C7.2734 16.8375 7.04374 16.0875 7 15.2203H9.03412C9.07349 15.7406 9.23097 16.1742 9.50656 16.5211C9.78653 16.8633 10.143 17.1188 10.5761 17.2875C11.0136 17.4516 11.4926 17.5336 12.0131 17.5336C12.5862 17.5336 13.0958 17.4375 13.542 17.2453C13.9926 17.0484 14.3469 16.7766 14.605 16.4297C14.8631 16.0781 14.9921 15.668 14.9921 15.1992C14.9921 14.7727 14.8784 14.4234 14.6509 14.1516C14.4278 13.8797 14.1238 13.6547 13.7388 13.4766C13.3583 13.2984 12.9274 13.1414 12.4462 13.0055L10.8583 12.5414C9.78215 12.2273 8.92913 11.7656 8.29921 11.1563C7.67367 10.5469 7.36089 9.74063 7.36089 8.7375C7.36089 7.90781 7.57087 7.18359 7.99081 6.56484C8.41076 5.94609 8.97944 5.46563 9.69685 5.12344C10.4143 4.77656 11.2235 4.60313 12.1247 4.60313C13.0346 4.60313 13.8373 4.77422 14.5328 5.11641C15.2327 5.45859 15.7839 5.92969 16.1864 6.52969C16.5888 7.125 16.7988 7.80938 16.8163 8.58281H14.8609Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/DownloadCloudIcon/__snapshots__/DownloadCloudIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/DownloadCloudIcon/__snapshots__/DownloadCloudIcon.native.test.tsx.snap index 8bbec8e6320..d49f5e83484 100644 --- a/packages/blade/src/components/Icons/DownloadCloudIcon/__snapshots__/DownloadCloudIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/DownloadCloudIcon/__snapshots__/DownloadCloudIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render DownloadCloudIcon 1`] = ` should render DownloadCloudIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render DownloadCloudIcon 1`] = ` should render DownloadCloudIcon 1`] = ` d="M10.0209 3.04746C6.31707 2.62087 2.73368 4.52209 1.01031 7.82818C-0.713067 11.1343 -0.219588 15.1607 2.25118 17.9527C2.61719 18.3663 3.24917 18.4049 3.66277 18.0389C4.07636 17.6729 4.11494 17.0409 3.74894 16.6273C1.82723 14.4557 1.44341 11.3241 2.78382 8.75267C4.12422 6.18126 6.9113 4.70253 9.79204 5.03433C12.6728 5.36612 15.0507 7.43975 15.7714 10.2485C15.8849 10.6908 16.2835 11 16.7401 11L18.0008 11C19.7457 10.9986 21.2901 12.1285 21.8172 13.7919C22.3442 15.4552 21.7322 17.2683 20.3048 18.272C19.8531 18.5897 19.7444 19.2135 20.0621 19.6652C20.3797 20.117 21.0035 20.2257 21.4553 19.908C23.5962 18.4025 24.5143 15.6829 23.7238 13.1878C22.9333 10.693 20.6163 8.9983 17.9993 9L17.4807 9C16.3464 5.77429 13.4628 3.44389 10.0209 3.04746Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -65,7 +65,7 @@ exports[` should render DownloadCloudIcon 1`] = ` d="M12 12C12.5523 12 13 12.4477 13 13V19.5858L15.2929 17.2929C15.6834 16.9024 16.3166 16.9024 16.7071 17.2929C17.0976 17.6834 17.0976 18.3166 16.7071 18.7071L12.7071 22.7071C12.3166 23.0976 11.6834 23.0976 11.2929 22.7071L7.29289 18.7071C6.90237 18.3166 6.90237 17.6834 7.29289 17.2929C7.68342 16.9024 8.31658 16.9024 8.70711 17.2929L11 19.5858V13C11 12.4477 11.4477 12 12 12Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -79,7 +79,7 @@ exports[` should render DownloadCloudIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/DownloadIcon/__snapshots__/DownloadIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/DownloadIcon/__snapshots__/DownloadIcon.native.test.tsx.snap index 91bcd502a44..1aeef8cbf39 100644 --- a/packages/blade/src/components/Icons/DownloadIcon/__snapshots__/DownloadIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/DownloadIcon/__snapshots__/DownloadIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render DownloadIcon 1`] = ` should render DownloadIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render DownloadIcon 1`] = ` should render DownloadIcon 1`] = ` d="M13 2a1 1 0 1 0-2 0v11.586l-2.293-2.293a1 1 0 0 0-1.414 1.414l4 4 .007.007a.996.996 0 0 0 .697.286h.006c.272 0 .518-.11.697-.286l.008-.008 4-3.999a1 1 0 0 0-1.415-1.414L13 13.586V2Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render DownloadIcon 1`] = ` d="M3 16a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-3a1 1 0 1 1 2 0v3a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3v-3a1 1 0 0 1 1-1Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/DropletIcon/__snapshots__/DropletIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/DropletIcon/__snapshots__/DropletIcon.native.test.tsx.snap index 8ebb451b281..b5ac78493ba 100644 --- a/packages/blade/src/components/Icons/DropletIcon/__snapshots__/DropletIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/DropletIcon/__snapshots__/DropletIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render DropletIcon 1`] = ` should render DropletIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render DropletIcon 1`] = ` should render DropletIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/EditComposeIcon/__snapshots__/EditComposeIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/EditComposeIcon/__snapshots__/EditComposeIcon.native.test.tsx.snap index e6a777d6d3d..941fc5b4048 100644 --- a/packages/blade/src/components/Icons/EditComposeIcon/__snapshots__/EditComposeIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/EditComposeIcon/__snapshots__/EditComposeIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render EditComposeIcon 1`] = ` should render EditComposeIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render EditComposeIcon 1`] = ` should render EditComposeIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -65,7 +65,7 @@ exports[` should render EditComposeIcon 1`] = ` d="M4 5C4 4.44772 4.44772 4 5 4H10.34C10.8923 4 11.34 3.55228 11.34 3C11.34 2.44772 10.8923 2 10.34 2H5C3.34315 2 2 3.34315 2 5V19C2 20.6569 3.34315 22 5 22H19C20.6569 22 22 20.6569 22 19V13.66C22 13.1077 21.5523 12.66 21 12.66C20.4477 12.66 20 13.1077 20 13.66V19C20 19.5523 19.5523 20 19 20H5C4.44772 20 4 19.5523 4 19V5Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/EditIcon/__snapshots__/EditIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/EditIcon/__snapshots__/EditIcon.native.test.tsx.snap index e02d89290be..3eed7acea95 100644 --- a/packages/blade/src/components/Icons/EditIcon/__snapshots__/EditIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/EditIcon/__snapshots__/EditIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render EditIcon 1`] = ` should render EditIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render EditIcon 1`] = ` should render EditIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/EditInlineIcon/__snapshots__/EditInlineIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/EditInlineIcon/__snapshots__/EditInlineIcon.native.test.tsx.snap index b9775da180b..dffdddce949 100644 --- a/packages/blade/src/components/Icons/EditInlineIcon/__snapshots__/EditInlineIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/EditInlineIcon/__snapshots__/EditInlineIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render EditInlineIcon 1`] = ` should render EditInlineIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render EditInlineIcon 1`] = ` should render EditInlineIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -65,7 +65,7 @@ exports[` should render EditInlineIcon 1`] = ` d="M3 21C2.44772 21 2 21.4477 2 22C2 22.5523 2.44772 23 3 23H21C21.5523 23 22 22.5523 22 22C22 21.4477 21.5523 21 21 21H3Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ExportIcon/__snapshots__/ExportIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ExportIcon/__snapshots__/ExportIcon.native.test.tsx.snap index 96493e4113a..103ca7d321e 100644 --- a/packages/blade/src/components/Icons/ExportIcon/__snapshots__/ExportIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ExportIcon/__snapshots__/ExportIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ExportIcon 1`] = ` should render ExportIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ExportIcon 1`] = ` should render ExportIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render ExportIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -79,7 +79,7 @@ exports[` should render ExportIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ExternalLinkIcon/__snapshots__/ExternalLinkIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ExternalLinkIcon/__snapshots__/ExternalLinkIcon.native.test.tsx.snap index 49dc37607b2..aadf3de4f74 100644 --- a/packages/blade/src/components/Icons/ExternalLinkIcon/__snapshots__/ExternalLinkIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ExternalLinkIcon/__snapshots__/ExternalLinkIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ExternalLinkIcon 1`] = ` should render ExternalLinkIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ExternalLinkIcon 1`] = ` should render ExternalLinkIcon 1`] = ` d="M14 3C14 2.44772 14.4477 2 15 2H21C21.5523 2 22 2.44772 22 3V9C22 9.55228 21.5523 10 21 10C20.4477 10 20 9.55228 20 9V5.41421L10.7071 14.7071C10.3166 15.0976 9.68342 15.0976 9.29289 14.7071C8.90237 14.3166 8.90237 13.6834 9.29289 13.2929L18.5858 4H15C14.4477 4 14 3.55228 14 3Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render ExternalLinkIcon 1`] = ` d="M5 7C4.44772 7 4 7.44772 4 8V19C4 19.5523 4.44772 20 5 20H16C16.5523 20 17 19.5523 17 19V13C17 12.4477 17.4477 12 18 12C18.5523 12 19 12.4477 19 13V19C19 20.6569 17.6569 22 16 22H5C3.34315 22 2 20.6569 2 19V8C2 6.34315 3.34315 5 5 5H11C11.5523 5 12 5.44772 12 6C12 6.55228 11.5523 7 11 7H5Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/EyeIcon/__snapshots__/EyeIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/EyeIcon/__snapshots__/EyeIcon.native.test.tsx.snap index 069f2945250..dab3f8c3636 100644 --- a/packages/blade/src/components/Icons/EyeIcon/__snapshots__/EyeIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/EyeIcon/__snapshots__/EyeIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render EyeIcon 1`] = ` should render EyeIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render EyeIcon 1`] = ` should render EyeIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render EyeIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/EyeOffIcon/__snapshots__/EyeOffIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/EyeOffIcon/__snapshots__/EyeOffIcon.native.test.tsx.snap index 72649293510..d94d9bae023 100644 --- a/packages/blade/src/components/Icons/EyeOffIcon/__snapshots__/EyeOffIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/EyeOffIcon/__snapshots__/EyeOffIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render EyeOffIcon 1`] = ` should render EyeOffIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render EyeOffIcon 1`] = ` should render EyeOffIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -73,7 +73,7 @@ exports[` should render EyeOffIcon 1`] = ` fill={null} height="100%" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/FacebookIcon/__snapshots__/FacebookIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/FacebookIcon/__snapshots__/FacebookIcon.native.test.tsx.snap index d16860781d8..b70ae1f2ced 100644 --- a/packages/blade/src/components/Icons/FacebookIcon/__snapshots__/FacebookIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/FacebookIcon/__snapshots__/FacebookIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render FacebookIcon 1`] = ` should render FacebookIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render FacebookIcon 1`] = ` should render FacebookIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/FastForwardIcon/__snapshots__/FastForwardIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/FastForwardIcon/__snapshots__/FastForwardIcon.native.test.tsx.snap index 7c33d46a8cf..1e16539a30a 100644 --- a/packages/blade/src/components/Icons/FastForwardIcon/__snapshots__/FastForwardIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/FastForwardIcon/__snapshots__/FastForwardIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render FastForwardIcon 1`] = ` should render FastForwardIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render FastForwardIcon 1`] = ` should render FastForwardIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/FeatherIcon/__snapshots__/FeatherIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/FeatherIcon/__snapshots__/FeatherIcon.native.test.tsx.snap index aaa28875806..9b5809f0d62 100644 --- a/packages/blade/src/components/Icons/FeatherIcon/__snapshots__/FeatherIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/FeatherIcon/__snapshots__/FeatherIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render FeatherIcon 1`] = ` should render FeatherIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render FeatherIcon 1`] = ` should render FeatherIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/FileIcon/__snapshots__/FileIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/FileIcon/__snapshots__/FileIcon.native.test.tsx.snap index 3a23bd2e363..764b70e6818 100644 --- a/packages/blade/src/components/Icons/FileIcon/__snapshots__/FileIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/FileIcon/__snapshots__/FileIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render FileIcon 1`] = ` should render FileIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render FileIcon 1`] = ` should render FileIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/FileMinusIcon/__snapshots__/FileMinusIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/FileMinusIcon/__snapshots__/FileMinusIcon.native.test.tsx.snap index bdf847ae0c7..4e3a24404b4 100644 --- a/packages/blade/src/components/Icons/FileMinusIcon/__snapshots__/FileMinusIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/FileMinusIcon/__snapshots__/FileMinusIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render FileMinusIcon 1`] = ` should render FileMinusIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render FileMinusIcon 1`] = ` should render FileMinusIcon 1`] = ` d="M9 14C8.44772 14 8 14.4477 8 15C8 15.5523 8.44772 16 9 16H15C15.5523 16 16 15.5523 16 15C16 14.4477 15.5523 14 15 14H9Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render FileMinusIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/FilePlusIcon/__snapshots__/FilePlusIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/FilePlusIcon/__snapshots__/FilePlusIcon.native.test.tsx.snap index 234637ca476..0c8155b8f23 100644 --- a/packages/blade/src/components/Icons/FilePlusIcon/__snapshots__/FilePlusIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/FilePlusIcon/__snapshots__/FilePlusIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render FilePlusIcon 1`] = ` should render FilePlusIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render FilePlusIcon 1`] = ` should render FilePlusIcon 1`] = ` d="M12 11C12.5523 11 13 11.4477 13 12V14H15C15.5523 14 16 14.4477 16 15C16 15.5523 15.5523 16 15 16H13V18C13 18.5523 12.5523 19 12 19C11.4477 19 11 18.5523 11 18V16H9C8.44772 16 8 15.5523 8 15C8 14.4477 8.44772 14 9 14H11V12C11 11.4477 11.4477 11 12 11Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render FilePlusIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/FileTextIcon/__snapshots__/FileTextIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/FileTextIcon/__snapshots__/FileTextIcon.native.test.tsx.snap index 5d9d0198060..4dad48b4305 100644 --- a/packages/blade/src/components/Icons/FileTextIcon/__snapshots__/FileTextIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/FileTextIcon/__snapshots__/FileTextIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render FileTextIcon 1`] = ` should render FileTextIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render FileTextIcon 1`] = ` should render FileTextIcon 1`] = ` d="M8 12C7.44772 12 7 12.4477 7 13C7 13.5523 7.44772 14 8 14H16C16.5523 14 17 13.5523 17 13C17 12.4477 16.5523 12 16 12H8Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render FileTextIcon 1`] = ` d="M7 17C7 16.4477 7.44772 16 8 16H16C16.5523 16 17 16.4477 17 17C17 17.5523 16.5523 18 16 18H8C7.44772 18 7 17.5523 7 17Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -71,7 +71,7 @@ exports[` should render FileTextIcon 1`] = ` d="M8 8C7.44772 8 7 8.44772 7 9C7 9.55229 7.44772 10 8 10H10C10.5523 10 11 9.55229 11 9C11 8.44772 10.5523 8 10 8H8Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -82,7 +82,7 @@ exports[` should render FileTextIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/FilmIcon/__snapshots__/FilmIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/FilmIcon/__snapshots__/FilmIcon.native.test.tsx.snap index 06659d492a8..db301e84b74 100644 --- a/packages/blade/src/components/Icons/FilmIcon/__snapshots__/FilmIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/FilmIcon/__snapshots__/FilmIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render FilmIcon 1`] = ` should render FilmIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render FilmIcon 1`] = ` should render FilmIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/FilterIcon/__snapshots__/FilterIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/FilterIcon/__snapshots__/FilterIcon.native.test.tsx.snap index 7fa3686e0ab..bc48e1c460f 100644 --- a/packages/blade/src/components/Icons/FilterIcon/__snapshots__/FilterIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/FilterIcon/__snapshots__/FilterIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render FilterIcon 1`] = ` should render FilterIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render FilterIcon 1`] = ` should render FilterIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/FlagIcon/__snapshots__/FlagIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/FlagIcon/__snapshots__/FlagIcon.native.test.tsx.snap index 9f3b7532e7f..b5070adde24 100644 --- a/packages/blade/src/components/Icons/FlagIcon/__snapshots__/FlagIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/FlagIcon/__snapshots__/FlagIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render FlagIcon 1`] = ` should render FlagIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render FlagIcon 1`] = ` should render FlagIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/FolderIcon/__snapshots__/FolderIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/FolderIcon/__snapshots__/FolderIcon.native.test.tsx.snap index f67cd8ab6ce..ad6ab19a436 100644 --- a/packages/blade/src/components/Icons/FolderIcon/__snapshots__/FolderIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/FolderIcon/__snapshots__/FolderIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render FolderIcon 1`] = ` should render FolderIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render FolderIcon 1`] = ` should render FolderIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/FullScreenEnterIcon/__snapshots__/FullScreenEnterIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/FullScreenEnterIcon/__snapshots__/FullScreenEnterIcon.native.test.tsx.snap index 4305ba5215a..af4fcb8ee46 100644 --- a/packages/blade/src/components/Icons/FullScreenEnterIcon/__snapshots__/FullScreenEnterIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/FullScreenEnterIcon/__snapshots__/FullScreenEnterIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render FullScreenEnterIcon 1`] = ` should render FullScreenEnterIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render FullScreenEnterIcon 1`] = ` should render FullScreenEnterIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/FullScreenExitIcon/__snapshots__/FullScreenExitIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/FullScreenExitIcon/__snapshots__/FullScreenExitIcon.native.test.tsx.snap index feb6510e416..b4453974449 100644 --- a/packages/blade/src/components/Icons/FullScreenExitIcon/__snapshots__/FullScreenExitIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/FullScreenExitIcon/__snapshots__/FullScreenExitIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render FullScreenExitIcon 1`] = ` should render FullScreenExitIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render FullScreenExitIcon 1`] = ` should render FullScreenExitIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/GithubIcon/__snapshots__/GithubIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/GithubIcon/__snapshots__/GithubIcon.native.test.tsx.snap index 8e460ddaca8..882962cd9e6 100644 --- a/packages/blade/src/components/Icons/GithubIcon/__snapshots__/GithubIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/GithubIcon/__snapshots__/GithubIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render GithubIcon 1`] = ` should render GithubIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render GithubIcon 1`] = ` should render GithubIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -73,7 +73,7 @@ exports[` should render GithubIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/GitlabIcon/__snapshots__/GitlabIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/GitlabIcon/__snapshots__/GitlabIcon.native.test.tsx.snap index ac6631f0f46..fa3df38250d 100644 --- a/packages/blade/src/components/Icons/GitlabIcon/__snapshots__/GitlabIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/GitlabIcon/__snapshots__/GitlabIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render GitlabIcon 1`] = ` should render GitlabIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render GitlabIcon 1`] = ` should render GitlabIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -73,7 +73,7 @@ exports[` should render GitlabIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/GlobeIcon/__snapshots__/GlobeIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/GlobeIcon/__snapshots__/GlobeIcon.native.test.tsx.snap index 28bf8e73c7b..a6f9bfcb1d4 100644 --- a/packages/blade/src/components/Icons/GlobeIcon/__snapshots__/GlobeIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/GlobeIcon/__snapshots__/GlobeIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render GlobeIcon 1`] = ` should render GlobeIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render GlobeIcon 1`] = ` should render GlobeIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/GridIcon/__snapshots__/GridIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/GridIcon/__snapshots__/GridIcon.native.test.tsx.snap index a62a964d3dd..b7a6dfad290 100644 --- a/packages/blade/src/components/Icons/GridIcon/__snapshots__/GridIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/GridIcon/__snapshots__/GridIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render GridIcon 1`] = ` should render GridIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render GridIcon 1`] = ` should render GridIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render GridIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -79,7 +79,7 @@ exports[` should render GridIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -91,7 +91,7 @@ exports[` should render GridIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/HashIcon/__snapshots__/HashIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/HashIcon/__snapshots__/HashIcon.native.test.tsx.snap index 87cde7cc613..5e54be0fb66 100644 --- a/packages/blade/src/components/Icons/HashIcon/__snapshots__/HashIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/HashIcon/__snapshots__/HashIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render HashIcon 1`] = ` should render HashIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render HashIcon 1`] = ` should render HashIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/HeadphonesIcon/__snapshots__/HeadphonesIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/HeadphonesIcon/__snapshots__/HeadphonesIcon.native.test.tsx.snap index a020a35f4e3..755fddd113a 100644 --- a/packages/blade/src/components/Icons/HeadphonesIcon/__snapshots__/HeadphonesIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/HeadphonesIcon/__snapshots__/HeadphonesIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render HeadphonesIcon 1`] = ` should render HeadphonesIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render HeadphonesIcon 1`] = ` should render HeadphonesIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/HeartIcon/__snapshots__/HeartIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/HeartIcon/__snapshots__/HeartIcon.native.test.tsx.snap index 7b6bd48b6bd..d990a52891a 100644 --- a/packages/blade/src/components/Icons/HeartIcon/__snapshots__/HeartIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/HeartIcon/__snapshots__/HeartIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render HeartIcon 1`] = ` should render HeartIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render HeartIcon 1`] = ` should render HeartIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/HelpCircleIcon/__snapshots__/HelpCircleIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/HelpCircleIcon/__snapshots__/HelpCircleIcon.native.test.tsx.snap index 23325e6d5f6..708327f1811 100644 --- a/packages/blade/src/components/Icons/HelpCircleIcon/__snapshots__/HelpCircleIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/HelpCircleIcon/__snapshots__/HelpCircleIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render HelpCircleIcon 1`] = ` should render HelpCircleIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render HelpCircleIcon 1`] = ` should render HelpCircleIcon 1`] = ` d="M12.2581 8.02434C11.2969 7.85947 10.357 8.4119 10.0333 9.33187C9.85006 9.85286 9.27914 10.1266 8.75815 9.94336C8.23716 9.76009 7.96339 9.18917 8.14666 8.66818C8.79391 6.82824 10.6738 5.72339 12.5962 6.05313C14.5184 6.38284 15.9226 8.05072 15.92 10.0009C15.9195 11.5313 14.7849 12.5419 13.9747 13.0821C13.5391 13.3725 13.1105 13.586 12.7949 13.7263C12.6356 13.7971 12.5015 13.8508 12.4049 13.8876C12.3565 13.9061 12.3173 13.9204 12.2887 13.9305L12.254 13.9427L12.2429 13.9465L12.239 13.9478L12.2375 13.9483C12.2375 13.9483 12.2362 13.9487 11.92 13L12.2362 13.9487C11.7123 14.1234 11.146 13.8402 10.9713 13.3163C10.7968 12.7927 11.0794 12.2267 11.6027 12.0517L11.6187 12.0461C11.6341 12.0406 11.6593 12.0315 11.6929 12.0187C11.7603 11.993 11.8606 11.9529 11.9826 11.8987C12.2294 11.789 12.5509 11.6276 12.8653 11.418C13.5549 10.9582 13.92 10.4692 13.92 10L13.92 9.99854C13.9214 9.0233 13.2193 8.18921 12.2581 8.02434Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render HelpCircleIcon 1`] = ` d="M12 18C12.5523 18 13 17.5523 13 17C13 16.4477 12.5523 16 12 16C11.4477 16 11 16.4477 11 17C11 17.5523 11.4477 18 12 18Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -73,7 +73,7 @@ exports[` should render HelpCircleIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/HistoryIcon/__snapshots__/HistoryIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/HistoryIcon/__snapshots__/HistoryIcon.native.test.tsx.snap index 9e41d97eca9..6fd9ab9b9cd 100644 --- a/packages/blade/src/components/Icons/HistoryIcon/__snapshots__/HistoryIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/HistoryIcon/__snapshots__/HistoryIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render HistoryIcon 1`] = ` should render HistoryIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render HistoryIcon 1`] = ` should render HistoryIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/HomeIcon/__snapshots__/HomeIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/HomeIcon/__snapshots__/HomeIcon.native.test.tsx.snap index d90d26491c2..f84bee48d6a 100644 --- a/packages/blade/src/components/Icons/HomeIcon/__snapshots__/HomeIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/HomeIcon/__snapshots__/HomeIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render HomeIcon 1`] = ` should render HomeIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render HomeIcon 1`] = ` should render HomeIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ImageIcon/__snapshots__/ImageIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ImageIcon/__snapshots__/ImageIcon.native.test.tsx.snap index 9d71b830d01..157415c9479 100644 --- a/packages/blade/src/components/Icons/ImageIcon/__snapshots__/ImageIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ImageIcon/__snapshots__/ImageIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ImageIcon 1`] = ` should render ImageIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ImageIcon 1`] = ` should render ImageIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render ImageIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/InboxIcon/__snapshots__/InboxIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/InboxIcon/__snapshots__/InboxIcon.native.test.tsx.snap index dc6846c8b2f..3b08efe6854 100644 --- a/packages/blade/src/components/Icons/InboxIcon/__snapshots__/InboxIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/InboxIcon/__snapshots__/InboxIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render InboxIcon 1`] = ` should render InboxIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render InboxIcon 1`] = ` should render InboxIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/InfoIcon/__snapshots__/InfoIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/InfoIcon/__snapshots__/InfoIcon.native.test.tsx.snap index d92fad98bf9..f847cb6cae6 100644 --- a/packages/blade/src/components/Icons/InfoIcon/__snapshots__/InfoIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/InfoIcon/__snapshots__/InfoIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render InfoIcon 1`] = ` should render InfoIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render InfoIcon 1`] = ` should render InfoIcon 1`] = ` d="M12 11C12.5523 11 13 11.4477 13 12V16C13 16.5523 12.5523 17 12 17C11.4477 17 11 16.5523 11 16V12C11 11.4477 11.4477 11 12 11Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render InfoIcon 1`] = ` d="M12 7C11.4477 7 11 7.44772 11 8C11 8.55228 11.4477 9 12 9H12.01C12.5623 9 13.01 8.55228 13.01 8C13.01 7.44772 12.5623 7 12.01 7H12Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -73,7 +73,7 @@ exports[` should render InfoIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/InstagramIcon/__snapshots__/InstagramIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/InstagramIcon/__snapshots__/InstagramIcon.native.test.tsx.snap index 08200d4e49e..d46bf6d250a 100644 --- a/packages/blade/src/components/Icons/InstagramIcon/__snapshots__/InstagramIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/InstagramIcon/__snapshots__/InstagramIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render InstagramIcon 1`] = ` should render InstagramIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render InstagramIcon 1`] = ` should render InstagramIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render InstagramIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/InvoicesIcon/__snapshots__/InvoicesIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/InvoicesIcon/__snapshots__/InvoicesIcon.native.test.tsx.snap index c6011130172..4fcab15023e 100644 --- a/packages/blade/src/components/Icons/InvoicesIcon/__snapshots__/InvoicesIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/InvoicesIcon/__snapshots__/InvoicesIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render InvoicesIcon 1`] = ` should render InvoicesIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render InvoicesIcon 1`] = ` should render InvoicesIcon 1`] = ` d="M19.7778 3.2H15.1333C14.6667 1.924 13.4444 1 12 1C10.5556 1 9.33333 1.924 8.86667 3.2H4.22222C3 3.2 2 4.19 2 5.4V20.8C2 22.01 3 23 4.22222 23H19.7778C21 23 22 22.01 22 20.8V5.4C22 4.19 21 3.2 19.7778 3.2ZM12 3.2C12.6111 3.2 13.1111 3.695 13.1111 4.3C13.1111 4.905 12.6111 5.4 12 5.4C11.3889 5.4 10.8889 4.905 10.8889 4.3C10.8889 3.695 11.3889 3.2 12 3.2ZM14.2222 18.6H6.44444V16.4H14.2222V18.6ZM17.5556 14.2H6.44444V12H17.5556V14.2ZM17.5556 9.8H6.44444V7.6H17.5556V9.8Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ItalicIcon/__snapshots__/ItalicIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ItalicIcon/__snapshots__/ItalicIcon.native.test.tsx.snap index d903936b7ea..160c83d3db5 100644 --- a/packages/blade/src/components/Icons/ItalicIcon/__snapshots__/ItalicIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ItalicIcon/__snapshots__/ItalicIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ItalicIcon 1`] = ` should render ItalicIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ItalicIcon 1`] = ` should render ItalicIcon 1`] = ` d="M15.0222 3H19C19.5523 3 20 3.44772 20 4C20 4.55228 19.5523 5 19 5H15.693L10.443 19H14C14.5523 19 15 19.4477 15 20C15 20.5523 14.5523 21 14 21H9.02418C9.00802 21.0004 8.99181 21.0004 8.97557 21H5C4.44772 21 4 20.5523 4 20C4 19.4477 4.44772 19 5 19H8.30704L13.557 5H10C9.44772 5 9 4.55228 9 4C9 3.44772 9.44772 3 10 3H14.9782C14.9928 2.99968 15.0075 2.99967 15.0222 3Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/LayersIcon/__snapshots__/LayersIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/LayersIcon/__snapshots__/LayersIcon.native.test.tsx.snap index 33fd460b829..d916f0b2543 100644 --- a/packages/blade/src/components/Icons/LayersIcon/__snapshots__/LayersIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/LayersIcon/__snapshots__/LayersIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render LayersIcon 1`] = ` should render LayersIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render LayersIcon 1`] = ` should render LayersIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -65,7 +65,7 @@ exports[` should render LayersIcon 1`] = ` d="M1.10555 16.5528C1.35254 16.0588 1.95321 15.8586 2.44719 16.1055L12 20.8819L21.5528 16.1055C22.0467 15.8586 22.6474 16.0588 22.8944 16.5528C23.1414 17.0467 22.9412 17.6474 22.4472 17.8944L12.4472 22.8944C12.1657 23.0352 11.8343 23.0352 11.5528 22.8944L1.55276 17.8944C1.05878 17.6474 0.858558 17.0467 1.10555 16.5528Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -74,7 +74,7 @@ exports[` should render LayersIcon 1`] = ` d="M2.44719 11.1055C1.95321 10.8586 1.35254 11.0588 1.10555 11.5528C0.858558 12.0467 1.05878 12.6474 1.55276 12.8944L11.5528 17.8944C11.8343 18.0352 12.1657 18.0352 12.4472 17.8944L22.4472 12.8944C22.9412 12.6474 23.1414 12.0467 22.8944 11.5528C22.6474 11.0588 22.0467 10.8586 21.5528 11.1055L12 15.8819L2.44719 11.1055Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/LayoutIcon/__snapshots__/LayoutIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/LayoutIcon/__snapshots__/LayoutIcon.native.test.tsx.snap index 142c4364f9d..3fcfbdf2100 100644 --- a/packages/blade/src/components/Icons/LayoutIcon/__snapshots__/LayoutIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/LayoutIcon/__snapshots__/LayoutIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render LayoutIcon 1`] = ` should render LayoutIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render LayoutIcon 1`] = ` should render LayoutIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/LifeBuoyIcon/__snapshots__/LifeBuoyIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/LifeBuoyIcon/__snapshots__/LifeBuoyIcon.native.test.tsx.snap index b5b415ca294..a1ac681d44e 100644 --- a/packages/blade/src/components/Icons/LifeBuoyIcon/__snapshots__/LifeBuoyIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/LifeBuoyIcon/__snapshots__/LifeBuoyIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render LifeBuoyIcon 1`] = ` should render LifeBuoyIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render LifeBuoyIcon 1`] = ` should render LifeBuoyIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/LinkIcon/__snapshots__/LinkIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/LinkIcon/__snapshots__/LinkIcon.native.test.tsx.snap index dc438ae1d9e..884a11f7212 100644 --- a/packages/blade/src/components/Icons/LinkIcon/__snapshots__/LinkIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/LinkIcon/__snapshots__/LinkIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render LinkIcon 1`] = ` should render LinkIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render LinkIcon 1`] = ` should render LinkIcon 1`] = ` d="M20.1863 1.82377C17.8719 -0.490636 14.1296 -0.523155 11.7753 1.75068L11.765 1.7608L10.045 3.4708C9.65336 3.86019 9.65151 4.49335 10.0409 4.88501C10.4303 5.27667 11.0634 5.27852 11.4551 4.88913L13.1697 3.18451C14.7395 1.67341 17.2307 1.69666 18.772 3.23798C20.313 4.77898 20.3366 7.26948 18.8265 8.83934L15.833 11.8329C15.0124 12.6537 13.8758 13.0778 12.7181 12.9949C11.5605 12.9119 10.496 12.3303 9.80083 11.401C9.47002 10.9587 8.84333 10.8684 8.40108 11.1992C7.95883 11.53 7.86849 12.1567 8.1993 12.5989C9.24204 13.993 10.8388 14.8654 12.5753 14.9897C14.3117 15.1141 16.0165 14.4782 17.2473 13.2469L20.2472 10.2471L20.2593 10.2347C22.5332 7.8804 22.5007 4.13817 20.1863 1.82377Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render LinkIcon 1`] = ` d="M9.42474 7.01016C7.68837 6.8858 5.9836 7.52171 4.75285 8.75283L1.75285 11.7528L1.74067 11.7652C-0.533165 14.1195 -0.500646 17.8617 1.81376 20.1761C4.12816 22.4905 7.8704 22.5231 10.2247 20.2492L10.2371 20.237L11.9471 18.527C12.3376 18.1365 12.3376 17.5034 11.9471 17.1128C11.5565 16.7223 10.9234 16.7223 10.5329 17.1128L8.82933 18.8164C7.25947 20.3265 4.76897 20.3029 3.22797 18.7619C1.68697 17.2209 1.66341 14.7304 3.17354 13.1606L6.16719 10.1669C6.9877 9.34611 8.12425 8.92214 9.28187 9.00505C10.4395 9.08796 11.504 9.66956 12.1992 10.5989C12.53 11.0412 13.1567 11.1315 13.5989 10.8007C14.0412 10.4699 14.1315 9.84321 13.8007 9.40096C12.758 8.00693 11.1612 7.13452 9.42474 7.01016Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ListIcon/__snapshots__/ListIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ListIcon/__snapshots__/ListIcon.native.test.tsx.snap index b3ea02f733c..43259c6e924 100644 --- a/packages/blade/src/components/Icons/ListIcon/__snapshots__/ListIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ListIcon/__snapshots__/ListIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ListIcon 1`] = ` should render ListIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ListIcon 1`] = ` should render ListIcon 1`] = ` d="M4 5C4.55228 5 5 5.44772 5 6C5 6.55228 4.55228 7 4 7H3C2.44772 7 2 6.55228 2 6C2 5.44772 2.44772 5 3 5H4Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render ListIcon 1`] = ` d="M8 5C7.44772 5 7 5.44772 7 6C7 6.55228 7.44772 7 8 7H21C21.5523 7 22 6.55228 22 6C22 5.44772 21.5523 5 21 5H8Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -71,7 +71,7 @@ exports[` should render ListIcon 1`] = ` d="M8 11C7.44772 11 7 11.4477 7 12C7 12.5523 7.44772 13 8 13H21C21.5523 13 22 12.5523 22 12C22 11.4477 21.5523 11 21 11H8Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -80,7 +80,7 @@ exports[` should render ListIcon 1`] = ` d="M7 18C7 17.4477 7.44772 17 8 17H21C21.5523 17 22 17.4477 22 18C22 18.5523 21.5523 19 21 19H8C7.44772 19 7 18.5523 7 18Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -89,7 +89,7 @@ exports[` should render ListIcon 1`] = ` d="M5 12C5 11.4477 4.55228 11 4 11H3C2.44772 11 2 11.4477 2 12C2 12.5523 2.44772 13 3 13H4C4.55228 13 5 12.5523 5 12Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -98,7 +98,7 @@ exports[` should render ListIcon 1`] = ` d="M4 17C4.55228 17 5 17.4477 5 18C5 18.5523 4.55228 19 4 19H3C2.44772 19 2 18.5523 2 18C2 17.4477 2.44772 17 3 17H4Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/LoaderIcon/__snapshots__/LoaderIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/LoaderIcon/__snapshots__/LoaderIcon.native.test.tsx.snap index f5497fc0122..4bc992d0bb1 100644 --- a/packages/blade/src/components/Icons/LoaderIcon/__snapshots__/LoaderIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/LoaderIcon/__snapshots__/LoaderIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render LoaderIcon 1`] = ` should render LoaderIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render LoaderIcon 1`] = ` should render LoaderIcon 1`] = ` d="M13 2C13 1.44772 12.5523 1 12 1C11.4477 1 11 1.44772 11 2V6C11 6.55228 11.4477 7 12 7C12.5523 7 13 6.55228 13 6V2Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render LoaderIcon 1`] = ` d="M13 18C13 17.4477 12.5523 17 12 17C11.4477 17 11 17.4477 11 18V22C11 22.5523 11.4477 23 12 23C12.5523 23 13 22.5523 13 22V18Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -71,7 +71,7 @@ exports[` should render LoaderIcon 1`] = ` d="M4.22289 4.22289C4.61341 3.83236 5.24658 3.83236 5.6371 4.22289L8.4671 7.05289C8.85762 7.44341 8.85762 8.07658 8.4671 8.4671C8.07658 8.85762 7.44341 8.85762 7.05289 8.4671L4.22289 5.6371C3.83236 5.24658 3.83236 4.61341 4.22289 4.22289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -80,7 +80,7 @@ exports[` should render LoaderIcon 1`] = ` d="M16.9471 15.5329C16.5566 15.1424 15.9234 15.1424 15.5329 15.5329C15.1424 15.9234 15.1424 16.5566 15.5329 16.9471L18.3629 19.7771C18.7534 20.1676 19.3866 20.1676 19.7771 19.7771C20.1676 19.3866 20.1676 18.7534 19.7771 18.3629L16.9471 15.5329Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -89,7 +89,7 @@ exports[` should render LoaderIcon 1`] = ` d="M1 12C1 11.4477 1.44772 11 2 11H6C6.55228 11 7 11.4477 7 12C7 12.5523 6.55228 13 6 13H2C1.44772 13 1 12.5523 1 12Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -98,7 +98,7 @@ exports[` should render LoaderIcon 1`] = ` d="M18 11C17.4477 11 17 11.4477 17 12C17 12.5523 17.4477 13 18 13H22C22.5523 13 23 12.5523 23 12C23 11.4477 22.5523 11 22 11H18Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -107,7 +107,7 @@ exports[` should render LoaderIcon 1`] = ` d="M8.4671 15.5329C8.85762 15.9234 8.85762 16.5566 8.4671 16.9471L5.6371 19.7771C5.24658 20.1676 4.61341 20.1676 4.22289 19.7771C3.83236 19.3866 3.83236 18.7534 4.22289 18.3629L7.05289 15.5329C7.44341 15.1424 8.07658 15.1424 8.4671 15.5329Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -116,7 +116,7 @@ exports[` should render LoaderIcon 1`] = ` d="M19.7771 5.6371C20.1676 5.24658 20.1676 4.61341 19.7771 4.22289C19.3866 3.83236 18.7534 3.83236 18.3629 4.22289L15.5329 7.05289C15.1424 7.44341 15.1424 8.07658 15.5329 8.4671C15.9234 8.85762 16.5566 8.85762 16.9471 8.4671L19.7771 5.6371Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/LockIcon/__snapshots__/LockIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/LockIcon/__snapshots__/LockIcon.native.test.tsx.snap index 4209cb02e55..4fca216d4f3 100644 --- a/packages/blade/src/components/Icons/LockIcon/__snapshots__/LockIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/LockIcon/__snapshots__/LockIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render LockIcon 1`] = ` should render LockIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render LockIcon 1`] = ` should render LockIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/LogInIcon/__snapshots__/LogInIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/LogInIcon/__snapshots__/LogInIcon.native.test.tsx.snap index 5db8388ac39..e906bafe6ba 100644 --- a/packages/blade/src/components/Icons/LogInIcon/__snapshots__/LogInIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/LogInIcon/__snapshots__/LogInIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render LogInIcon 1`] = ` should render LogInIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render LogInIcon 1`] = ` should render LogInIcon 1`] = ` d="M13 2C13 1.44772 13.4477 1 14 1H19C20.6569 1 22 2.34315 22 4V20C22 21.6569 20.6569 23 19 23H14C13.4477 23 13 22.5523 13 22C13 21.4477 13.4477 21 14 21H19C19.5523 21 20 20.5523 20 20V4C20 3.44772 19.5523 3 19 3H14C13.4477 3 13 2.55228 13 2Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render LogInIcon 1`] = ` d="M10.2929 7.29289C10.6834 6.90237 11.3166 6.90237 11.7071 7.29289L15.7071 11.2929C16.0976 11.6834 16.0976 12.3166 15.7071 12.7071L11.7071 16.7071C11.3166 17.0976 10.6834 17.0976 10.2929 16.7071C9.90237 16.3166 9.90237 15.6834 10.2929 15.2929L12.5858 13H3C2.44772 13 2 12.5523 2 12C2 11.4477 2.44772 11 3 11H12.5858L10.2929 8.70711C9.90237 8.31658 9.90237 7.68342 10.2929 7.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/LogOutIcon/__snapshots__/LogOutIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/LogOutIcon/__snapshots__/LogOutIcon.native.test.tsx.snap index a182825b678..3ad29393119 100644 --- a/packages/blade/src/components/Icons/LogOutIcon/__snapshots__/LogOutIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/LogOutIcon/__snapshots__/LogOutIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render LogOutIcon 1`] = ` should render LogOutIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render LogOutIcon 1`] = ` should render LogOutIcon 1`] = ` d="M5 3C4.44772 3 4 3.44772 4 4V20C4 20.5523 4.44772 21 5 21H10C10.5523 21 11 21.4477 11 22C11 22.5523 10.5523 23 10 23H5C3.34315 23 2 21.6569 2 20V4C2 2.34315 3.34315 1 5 1H10C10.5523 1 11 1.44772 11 2C11 2.55228 10.5523 3 10 3H5Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render LogOutIcon 1`] = ` d="M16.2929 7.29289C16.6834 6.90237 17.3166 6.90237 17.7071 7.29289L21.7071 11.2929C22.0976 11.6834 22.0976 12.3166 21.7071 12.7071L17.7071 16.7071C17.3166 17.0976 16.6834 17.0976 16.2929 16.7071C15.9024 16.3166 15.9024 15.6834 16.2929 15.2929L18.5858 13H9C8.44772 13 8 12.5523 8 12C8 11.4477 8.44772 11 9 11H18.5858L16.2929 8.70711C15.9024 8.31658 15.9024 7.68342 16.2929 7.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/MailIcon/__snapshots__/MailIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MailIcon/__snapshots__/MailIcon.native.test.tsx.snap index 3fbaa92fa4e..5cb508a2abf 100644 --- a/packages/blade/src/components/Icons/MailIcon/__snapshots__/MailIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MailIcon/__snapshots__/MailIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MailIcon 1`] = ` should render MailIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MailIcon 1`] = ` should render MailIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/MailOpenIcon/__snapshots__/MailOpenIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MailOpenIcon/__snapshots__/MailOpenIcon.native.test.tsx.snap index 21bc8e1b46f..bbb5649e9fa 100644 --- a/packages/blade/src/components/Icons/MailOpenIcon/__snapshots__/MailOpenIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MailOpenIcon/__snapshots__/MailOpenIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MailOpenIcon 1`] = ` should render MailOpenIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MailOpenIcon 1`] = ` should render MailOpenIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/MapIcon/__snapshots__/MapIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MapIcon/__snapshots__/MapIcon.native.test.tsx.snap index 068d146b2f2..29e2c67eae8 100644 --- a/packages/blade/src/components/Icons/MapIcon/__snapshots__/MapIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MapIcon/__snapshots__/MapIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MapIcon 1`] = ` should render MapIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MapIcon 1`] = ` should render MapIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/MapPinIcon/__snapshots__/MapPinIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MapPinIcon/__snapshots__/MapPinIcon.native.test.tsx.snap index bd5e726f1e9..7aed9cca8db 100644 --- a/packages/blade/src/components/Icons/MapPinIcon/__snapshots__/MapPinIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MapPinIcon/__snapshots__/MapPinIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MapPinIcon 1`] = ` should render MapPinIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MapPinIcon 1`] = ` should render MapPinIcon 1`] = ` d="M11.4448 23.8317C11.4448 23.8317 11.4453 23.8321 12 23L12.5547 23.8321C12.2188 24.056 11.7807 24.0556 11.4448 23.8317Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render MapPinIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -76,7 +76,7 @@ exports[` should render MapPinIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/MaximizeIcon/__snapshots__/MaximizeIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MaximizeIcon/__snapshots__/MaximizeIcon.native.test.tsx.snap index f5b5c44169e..82b001c0afc 100644 --- a/packages/blade/src/components/Icons/MaximizeIcon/__snapshots__/MaximizeIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MaximizeIcon/__snapshots__/MaximizeIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MaximizeIcon 1`] = ` should render MaximizeIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MaximizeIcon 1`] = ` should render MaximizeIcon 1`] = ` d="M15 2C14.4477 2 14 2.44772 14 3C14 3.55228 14.4477 4 15 4H18.5858L13.2929 9.29289C12.9024 9.68342 12.9024 10.3166 13.2929 10.7071C13.6834 11.0976 14.3166 11.0976 14.7071 10.7071L20 5.41421V9C20 9.55228 20.4477 10 21 10C21.5523 10 22 9.55228 22 9V3C22 2.44772 21.5523 2 21 2H15Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render MaximizeIcon 1`] = ` d="M4 15C4 14.4477 3.55228 14 3 14C2.44772 14 2 14.4477 2 15V21C2 21.5523 2.44772 22 3 22H9C9.55228 22 10 21.5523 10 21C10 20.4477 9.55228 20 9 20H5.41421L10.7071 14.7071C11.0976 14.3166 11.0976 13.6834 10.7071 13.2929C10.3166 12.9024 9.68342 12.9024 9.29289 13.2929L4 18.5858V15Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/MenuDotsIcon/__snapshots__/MenuDotsIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MenuDotsIcon/__snapshots__/MenuDotsIcon.native.test.tsx.snap index 2284ae3c1f5..30f68342005 100644 --- a/packages/blade/src/components/Icons/MenuDotsIcon/__snapshots__/MenuDotsIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MenuDotsIcon/__snapshots__/MenuDotsIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MenuDotsIcon 1`] = ` should render MenuDotsIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MenuDotsIcon 1`] = ` should render MenuDotsIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/MenuIcon/__snapshots__/MenuIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MenuIcon/__snapshots__/MenuIcon.native.test.tsx.snap index bca58dbca1c..b3fe31599f1 100644 --- a/packages/blade/src/components/Icons/MenuIcon/__snapshots__/MenuIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MenuIcon/__snapshots__/MenuIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MenuIcon 1`] = ` should render MenuIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MenuIcon 1`] = ` should render MenuIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render MenuIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -79,7 +79,7 @@ exports[` should render MenuIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/MessageCircleIcon/__snapshots__/MessageCircleIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MessageCircleIcon/__snapshots__/MessageCircleIcon.native.test.tsx.snap index 4747364fe84..bc199412872 100644 --- a/packages/blade/src/components/Icons/MessageCircleIcon/__snapshots__/MessageCircleIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MessageCircleIcon/__snapshots__/MessageCircleIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MessageCircleIcon 1`] = ` should render MessageCircleIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MessageCircleIcon 1`] = ` should render MessageCircleIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -73,7 +73,7 @@ exports[` should render MessageCircleIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/MessageSquareIcon/__snapshots__/MessageSquareIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MessageSquareIcon/__snapshots__/MessageSquareIcon.native.test.tsx.snap index 61cf6b619b6..986e0b4bf98 100644 --- a/packages/blade/src/components/Icons/MessageSquareIcon/__snapshots__/MessageSquareIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MessageSquareIcon/__snapshots__/MessageSquareIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MessageSquareIcon 1`] = ` should render MessageSquareIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MessageSquareIcon 1`] = ` should render MessageSquareIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/MicIcon/__snapshots__/MicIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MicIcon/__snapshots__/MicIcon.native.test.tsx.snap index ad2cfa69c22..37cfefea129 100644 --- a/packages/blade/src/components/Icons/MicIcon/__snapshots__/MicIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MicIcon/__snapshots__/MicIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MicIcon 1`] = ` should render MicIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MicIcon 1`] = ` should render MicIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -65,7 +65,7 @@ exports[` should render MicIcon 1`] = ` d="M6 10C6 9.44771 5.55228 9 5 9C4.44772 9 4 9.44771 4 10V12C4 16.0796 7.05369 19.446 11 19.9381V22H8C7.44772 22 7 22.4477 7 23C7 23.5523 7.44772 24 8 24H16C16.5523 24 17 23.5523 17 23C17 22.4477 16.5523 22 16 22H13V19.9381C16.9463 19.446 20 16.0796 20 12V10C20 9.44771 19.5523 9 19 9C18.4477 9 18 9.44771 18 10V12C18 15.3137 15.3137 18 12 18C8.68629 18 6 15.3137 6 12V10Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/MicOffIcon/__snapshots__/MicOffIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MicOffIcon/__snapshots__/MicOffIcon.native.test.tsx.snap index d4d6c40922a..f3feb418e80 100644 --- a/packages/blade/src/components/Icons/MicOffIcon/__snapshots__/MicOffIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MicOffIcon/__snapshots__/MicOffIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MicOffIcon 1`] = ` should render MicOffIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MicOffIcon 1`] = ` should render MicOffIcon 1`] = ` d="M12.3535 0.0126975C13.8025 0.0334948 14.7788 0.713743 15.3459 1.598C15.876 2.42454 16.0189 3.37324 16 4.01597V9.50006C16 10.0523 15.5523 10.5001 15 10.5001C14.4477 10.5001 14 10.0523 14 9.50006V4.00006C14 3.98851 14.0002 3.97697 14.0006 3.96543C14.0127 3.61648 13.9246 3.0866 13.6624 2.6777C13.4382 2.32811 13.0632 2.01557 12.2972 2.01223C12.2651 2.01209 12.233 2.01041 12.2011 2.00718C11.1788 1.90392 10.2445 2.59211 10.0401 3.59907C9.93016 4.1403 9.4023 4.48997 8.86106 4.38007C8.31982 4.27017 7.97016 3.74231 8.08006 3.20107C8.48576 1.20311 10.3279 -0.167383 12.3535 0.0126975Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -67,7 +67,7 @@ exports[` should render MicOffIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -77,7 +77,7 @@ exports[` should render MicOffIcon 1`] = ` d="M20 10.0001C20 9.44778 19.5523 9.00006 19 9.00006C18.4477 9.00006 18 9.44778 18 10.0001V12.0001C18 12.215 17.9214 12.9213 17.6056 13.5528C17.3586 14.0468 17.5588 14.6475 18.0528 14.8945C18.5468 15.1415 19.1474 14.9413 19.3944 14.4473C19.8786 13.4789 20 12.4518 20 12.0001V10.0001Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -91,7 +91,7 @@ exports[` should render MicOffIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/MinimizeIcon/__snapshots__/MinimizeIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MinimizeIcon/__snapshots__/MinimizeIcon.native.test.tsx.snap index b3b37b3bf8c..d8157cb296b 100644 --- a/packages/blade/src/components/Icons/MinimizeIcon/__snapshots__/MinimizeIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MinimizeIcon/__snapshots__/MinimizeIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MinimizeIcon 1`] = ` should render MinimizeIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MinimizeIcon 1`] = ` should render MinimizeIcon 1`] = ` d="M21.7071 3.70711L16.4142 9H20C20.5523 9 21 9.44772 21 10C21 10.5523 20.5523 11 20 11H14.0007L13.997 11C13.743 10.9992 13.4892 10.9023 13.295 10.7092L13.2908 10.705C13.196 10.6096 13.1243 10.4999 13.0759 10.3828C13.0273 10.2657 13.0004 10.1375 13 10.003L13 10V4C13 3.44772 13.4477 3 14 3C14.5523 3 15 3.44772 15 4V7.58579L20.2929 2.29289C20.6834 1.90237 21.3166 1.90237 21.7071 2.29289C22.0976 2.68342 22.0976 3.31658 21.7071 3.70711Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render MinimizeIcon 1`] = ` d="M4 13C3.44772 13 3 13.4477 3 14C3 14.5523 3.44772 15 4 15H7.58579L2.29289 20.2929C1.90237 20.6834 1.90237 21.3166 2.29289 21.7071C2.68342 22.0976 3.31658 22.0976 3.70711 21.7071L9 16.4142V20C9 20.5523 9.44772 21 10 21C10.5523 21 11 20.5523 11 20V14.0007C11 13.9997 11 13.998 11 13.997C10.9992 13.7231 10.8883 13.4752 10.7092 13.295C10.7078 13.2936 10.7064 13.2922 10.705 13.2908C10.6096 13.196 10.4999 13.1243 10.3828 13.0759C10.2657 13.0273 10.1375 13.0004 10.003 13C10.002 13 10.001 13 10 13H4Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/MinusCircleIcon/__snapshots__/MinusCircleIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MinusCircleIcon/__snapshots__/MinusCircleIcon.native.test.tsx.snap index 34c91aa9f7d..fb20b55b5f5 100644 --- a/packages/blade/src/components/Icons/MinusCircleIcon/__snapshots__/MinusCircleIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MinusCircleIcon/__snapshots__/MinusCircleIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MinusCircleIcon 1`] = ` should render MinusCircleIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MinusCircleIcon 1`] = ` should render MinusCircleIcon 1`] = ` d="M8 11C7.44772 11 7 11.4477 7 12C7 12.5523 7.44772 13 8 13H16C16.5523 13 17 12.5523 17 12C17 11.4477 16.5523 11 16 11H8Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render MinusCircleIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/MinusIcon/__snapshots__/MinusIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MinusIcon/__snapshots__/MinusIcon.native.test.tsx.snap index 5770f5bede9..a2a4a771ecb 100644 --- a/packages/blade/src/components/Icons/MinusIcon/__snapshots__/MinusIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MinusIcon/__snapshots__/MinusIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MinusIcon 1`] = ` should render MinusIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MinusIcon 1`] = ` should render MinusIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/MinusSquareIcon/__snapshots__/MinusSquareIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MinusSquareIcon/__snapshots__/MinusSquareIcon.native.test.tsx.snap index 239a6a5cedf..7ad54619678 100644 --- a/packages/blade/src/components/Icons/MinusSquareIcon/__snapshots__/MinusSquareIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MinusSquareIcon/__snapshots__/MinusSquareIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MinusSquareIcon 1`] = ` should render MinusSquareIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MinusSquareIcon 1`] = ` should render MinusSquareIcon 1`] = ` d="M8 11C7.44772 11 7 11.4477 7 12C7 12.5523 7.44772 13 8 13H16C16.5523 13 17 12.5523 17 12C17 11.4477 16.5523 11 16 11H8Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render MinusSquareIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/MonitorIcon/__snapshots__/MonitorIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MonitorIcon/__snapshots__/MonitorIcon.native.test.tsx.snap index 738c20e8b97..925196df74f 100644 --- a/packages/blade/src/components/Icons/MonitorIcon/__snapshots__/MonitorIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MonitorIcon/__snapshots__/MonitorIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MonitorIcon 1`] = ` should render MonitorIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MonitorIcon 1`] = ` should render MonitorIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/MoonIcon/__snapshots__/MoonIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MoonIcon/__snapshots__/MoonIcon.native.test.tsx.snap index ea85a70fd4d..0991f033705 100644 --- a/packages/blade/src/components/Icons/MoonIcon/__snapshots__/MoonIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MoonIcon/__snapshots__/MoonIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MoonIcon 1`] = ` should render MoonIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MoonIcon 1`] = ` should render MoonIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/MoreHorizontalIcon/__snapshots__/MoreHorizontalIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MoreHorizontalIcon/__snapshots__/MoreHorizontalIcon.native.test.tsx.snap index 5c8dd3ab6ab..e90cbc1ccd7 100644 --- a/packages/blade/src/components/Icons/MoreHorizontalIcon/__snapshots__/MoreHorizontalIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MoreHorizontalIcon/__snapshots__/MoreHorizontalIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MoreHorizontalIcon 1`] = ` should render MoreHorizontalIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MoreHorizontalIcon 1`] = ` should render MoreHorizontalIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render MoreHorizontalIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -79,7 +79,7 @@ exports[` should render MoreHorizontalIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/MoreVerticalIcon/__snapshots__/MoreVerticalIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MoreVerticalIcon/__snapshots__/MoreVerticalIcon.native.test.tsx.snap index 13487e67b4d..ea76edac4a5 100644 --- a/packages/blade/src/components/Icons/MoreVerticalIcon/__snapshots__/MoreVerticalIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MoreVerticalIcon/__snapshots__/MoreVerticalIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MoreVerticalIcon 1`] = ` should render MoreVerticalIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MoreVerticalIcon 1`] = ` should render MoreVerticalIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render MoreVerticalIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -79,7 +79,7 @@ exports[` should render MoreVerticalIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/MoveIcon/__snapshots__/MoveIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MoveIcon/__snapshots__/MoveIcon.native.test.tsx.snap index c1ee7258146..2340b781c3a 100644 --- a/packages/blade/src/components/Icons/MoveIcon/__snapshots__/MoveIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MoveIcon/__snapshots__/MoveIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MoveIcon 1`] = ` should render MoveIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MoveIcon 1`] = ` should render MoveIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/MusicIcon/__snapshots__/MusicIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MusicIcon/__snapshots__/MusicIcon.native.test.tsx.snap index b89baaf1ec2..028280ddfd4 100644 --- a/packages/blade/src/components/Icons/MusicIcon/__snapshots__/MusicIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MusicIcon/__snapshots__/MusicIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MusicIcon 1`] = ` should render MusicIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MusicIcon 1`] = ` should render MusicIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/MyAccountIcon/__snapshots__/MyAccountIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/MyAccountIcon/__snapshots__/MyAccountIcon.native.test.tsx.snap index e4b658c27ba..08a59e69e24 100644 --- a/packages/blade/src/components/Icons/MyAccountIcon/__snapshots__/MyAccountIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/MyAccountIcon/__snapshots__/MyAccountIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render MyAccountIcon 1`] = ` should render MyAccountIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render MyAccountIcon 1`] = ` should render MyAccountIcon 1`] = ` d="M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 5C13.66 5 15 6.34 15 8C15 9.66 13.66 11 12 11C10.34 11 9 9.66 9 8C9 6.34 10.34 5 12 5ZM12 19.2C9.5 19.2 7.29 17.92 6 15.98C6.03 13.99 10 12.9 12 12.9C13.99 12.9 17.97 13.99 18 15.98C16.71 17.92 14.5 19.2 12 19.2Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/NavigationIcon/__snapshots__/NavigationIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/NavigationIcon/__snapshots__/NavigationIcon.native.test.tsx.snap index d2c139e39d3..3d5bf3316d7 100644 --- a/packages/blade/src/components/Icons/NavigationIcon/__snapshots__/NavigationIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/NavigationIcon/__snapshots__/NavigationIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render NavigationIcon 1`] = ` should render NavigationIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render NavigationIcon 1`] = ` should render NavigationIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/OctagonIcon/__snapshots__/OctagonIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/OctagonIcon/__snapshots__/OctagonIcon.native.test.tsx.snap index 40d7dddd33f..b26883d0afe 100644 --- a/packages/blade/src/components/Icons/OctagonIcon/__snapshots__/OctagonIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/OctagonIcon/__snapshots__/OctagonIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render OctagonIcon 1`] = ` should render OctagonIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render OctagonIcon 1`] = ` should render OctagonIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/OffersIcon/__snapshots__/OffersIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/OffersIcon/__snapshots__/OffersIcon.native.test.tsx.snap index 6b109140335..82c83f24781 100644 --- a/packages/blade/src/components/Icons/OffersIcon/__snapshots__/OffersIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/OffersIcon/__snapshots__/OffersIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render OffersIcon 1`] = ` should render OffersIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render OffersIcon 1`] = ` should render OffersIcon 1`] = ` d="M21.41 11.58L12.415 2.585C12.05 2.225 11.55 2 11 2H4C2.895 2 2 2.895 2 4V11C2 11.555 2.225 12.055 2.59 12.415L11.59 21.415C11.95 21.775 12.45 22 13 22C13.55 22 14.055 21.775 14.415 21.415L21.415 14.415C21.775 14.05 22 13.55 22 13C22 12.445 21.775 11.945 21.41 11.58ZM5.5 7C4.67 7 4 6.33 4 5.5C4 4.67 4.67 4 5.5 4C6.33 4 7 4.67 7 5.5C7 6.33 6.33 7 5.5 7Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/PackageIcon/__snapshots__/PackageIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PackageIcon/__snapshots__/PackageIcon.native.test.tsx.snap index 1537c452e50..ace6c239ac2 100644 --- a/packages/blade/src/components/Icons/PackageIcon/__snapshots__/PackageIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PackageIcon/__snapshots__/PackageIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PackageIcon 1`] = ` should render PackageIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PackageIcon 1`] = ` should render PackageIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/PaperclipIcon/__snapshots__/PaperclipIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PaperclipIcon/__snapshots__/PaperclipIcon.native.test.tsx.snap index 1a83583e1af..850308cc53d 100644 --- a/packages/blade/src/components/Icons/PaperclipIcon/__snapshots__/PaperclipIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PaperclipIcon/__snapshots__/PaperclipIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PaperclipIcon 1`] = ` should render PaperclipIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PaperclipIcon 1`] = ` should render PaperclipIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/PauseCircleIcon/__snapshots__/PauseCircleIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PauseCircleIcon/__snapshots__/PauseCircleIcon.native.test.tsx.snap index 369a85b8be5..3e5f14b9003 100644 --- a/packages/blade/src/components/Icons/PauseCircleIcon/__snapshots__/PauseCircleIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PauseCircleIcon/__snapshots__/PauseCircleIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PauseCircleIcon 1`] = ` should render PauseCircleIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PauseCircleIcon 1`] = ` should render PauseCircleIcon 1`] = ` d="M10 8C10.5523 8 11 8.44772 11 9V15C11 15.5523 10.5523 16 10 16C9.44771 16 9 15.5523 9 15V9C9 8.44772 9.44771 8 10 8Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render PauseCircleIcon 1`] = ` d="M15 9C15 8.44772 14.5523 8 14 8C13.4477 8 13 8.44772 13 9V15C13 15.5523 13.4477 16 14 16C14.5523 16 15 15.5523 15 15V9Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -73,7 +73,7 @@ exports[` should render PauseCircleIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/PauseIcon/__snapshots__/PauseIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PauseIcon/__snapshots__/PauseIcon.native.test.tsx.snap index 1955fd824be..2a884acad07 100644 --- a/packages/blade/src/components/Icons/PauseIcon/__snapshots__/PauseIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PauseIcon/__snapshots__/PauseIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PauseIcon 1`] = ` should render PauseIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PauseIcon 1`] = ` should render PauseIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/PaymentButtonsIcon/__snapshots__/PaymentButtonsIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PaymentButtonsIcon/__snapshots__/PaymentButtonsIcon.native.test.tsx.snap index 0b3388f1226..1335a8d4c91 100644 --- a/packages/blade/src/components/Icons/PaymentButtonsIcon/__snapshots__/PaymentButtonsIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PaymentButtonsIcon/__snapshots__/PaymentButtonsIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PaymentButtonsIcon 1`] = ` should render PaymentButtonsIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PaymentButtonsIcon 1`] = ` should render PaymentButtonsIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/PaymentLinksIcon/__snapshots__/PaymentLinksIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PaymentLinksIcon/__snapshots__/PaymentLinksIcon.native.test.tsx.snap index 24ce642096c..18e785b10b3 100644 --- a/packages/blade/src/components/Icons/PaymentLinksIcon/__snapshots__/PaymentLinksIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PaymentLinksIcon/__snapshots__/PaymentLinksIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PaymentLinksIcon 1`] = ` should render PaymentLinksIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PaymentLinksIcon 1`] = ` should render PaymentLinksIcon 1`] = ` d="M3.9 12C3.9 10.29 5.29 8.9 7 8.9H11V7H7C4.24 7 2 9.24 2 12C2 14.76 4.24 17 7 17H11V15.1H7C5.29 15.1 3.9 13.71 3.9 12ZM8 13H16V11H8V13ZM17 7H13V8.9H17C18.71 8.9 20.1 10.29 20.1 12C20.1 13.71 18.71 15.1 17 15.1H13V17H17C19.76 17 22 14.76 22 12C22 9.24 19.76 7 17 7Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/PaymentPagesIcon/__snapshots__/PaymentPagesIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PaymentPagesIcon/__snapshots__/PaymentPagesIcon.native.test.tsx.snap index c276d105a87..dc07c11687f 100644 --- a/packages/blade/src/components/Icons/PaymentPagesIcon/__snapshots__/PaymentPagesIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PaymentPagesIcon/__snapshots__/PaymentPagesIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PaymentPagesIcon 1`] = ` should render PaymentPagesIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PaymentPagesIcon 1`] = ` should render PaymentPagesIcon 1`] = ` d="M16.0588 2L21 7.26316V20.2456C21 21.2105 20.2588 21.9912 19.3529 21.9912L7.82353 22C6.91765 22 6.17647 21.2193 6.17647 20.2544V3.75439C6.17647 2.78947 6.91765 2 7.82353 2H16.0588ZM3 5.15789H4.71429V20.9474H3V5.15789ZM9.35294 10.4211V11.4737H17.8235V10.4211H9.35294ZM9.35294 12.5263V13.5789H17.8235V12.5263H9.35294ZM9.35294 14.6316V15.6842H17.8235V14.6316H9.35294ZM15 3.31579V8.14035H19.7143L15 3.31579Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/PercentIcon/__snapshots__/PercentIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PercentIcon/__snapshots__/PercentIcon.native.test.tsx.snap index ed0be92bded..6b13dae16e0 100644 --- a/packages/blade/src/components/Icons/PercentIcon/__snapshots__/PercentIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PercentIcon/__snapshots__/PercentIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PercentIcon 1`] = ` should render PercentIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PercentIcon 1`] = ` should render PercentIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -65,7 +65,7 @@ exports[` should render PercentIcon 1`] = ` d="M19.7071 5.70711L5.70711 19.7071C5.31658 20.0976 4.68342 20.0976 4.29289 19.7071C3.90237 19.3166 3.90237 18.6834 4.29289 18.2929L18.2929 4.29289C18.6834 3.90237 19.3166 3.90237 19.7071 4.29289C20.0976 4.68342 20.0976 5.31658 19.7071 5.70711Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -76,7 +76,7 @@ exports[` should render PercentIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/PhoneCallIcon/__snapshots__/PhoneCallIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PhoneCallIcon/__snapshots__/PhoneCallIcon.native.test.tsx.snap index cb2718f92ff..ed95a05209c 100644 --- a/packages/blade/src/components/Icons/PhoneCallIcon/__snapshots__/PhoneCallIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PhoneCallIcon/__snapshots__/PhoneCallIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PhoneCallIcon 1`] = ` should render PhoneCallIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PhoneCallIcon 1`] = ` should render PhoneCallIcon 1`] = ` d="M13.0561 1.88955C13.1171 1.34065 13.6115 0.945101 14.1604 1.00608C18.8043 1.52198 22.472 5.18501 22.9937 9.8283C23.0554 10.3771 22.6605 10.872 22.1116 10.9337C21.5628 10.9954 21.0679 10.6005 21.0062 10.0516C20.5888 6.337 17.6547 3.40658 13.9396 2.99385C13.3907 2.93287 12.9951 2.43846 13.0561 1.88955Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render PhoneCallIcon 1`] = ` d="M13.0685 5.80848C13.1742 5.26642 13.6994 4.91272 14.2415 5.01848C16.639 5.48626 18.5137 7.36089 18.9815 9.75848C19.0872 10.3005 18.7335 10.8257 18.1915 10.9315C17.6494 11.0372 17.1242 10.6835 17.0185 10.1415C16.7066 8.54308 15.4569 7.29332 13.8585 6.98147C13.3164 6.87571 12.9627 6.35054 13.0685 5.80848Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -73,7 +73,7 @@ exports[` should render PhoneCallIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/PhoneForwardedIcon/__snapshots__/PhoneForwardedIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PhoneForwardedIcon/__snapshots__/PhoneForwardedIcon.native.test.tsx.snap index 4f79f68013c..9161992565e 100644 --- a/packages/blade/src/components/Icons/PhoneForwardedIcon/__snapshots__/PhoneForwardedIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PhoneForwardedIcon/__snapshots__/PhoneForwardedIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PhoneForwardedIcon 1`] = ` should render PhoneForwardedIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PhoneForwardedIcon 1`] = ` should render PhoneForwardedIcon 1`] = ` d="M17.2929 1.29289C17.6834 0.902369 18.3166 0.902369 18.7071 1.29289L22.7071 5.29289C23.0976 5.68342 23.0976 6.31658 22.7071 6.70711L18.7071 10.7071C18.3166 11.0976 17.6834 11.0976 17.2929 10.7071C16.9023 10.3166 16.9023 9.68342 17.2929 9.29289L19.5858 7H14C13.4477 7 13 6.55228 13 6C13 5.44772 13.4477 5 14 5H19.5858L17.2929 2.70711C16.9023 2.31658 16.9023 1.68342 17.2929 1.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render PhoneForwardedIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/PhoneIcon/__snapshots__/PhoneIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PhoneIcon/__snapshots__/PhoneIcon.native.test.tsx.snap index 258f9837a87..1d92ec47e99 100644 --- a/packages/blade/src/components/Icons/PhoneIcon/__snapshots__/PhoneIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PhoneIcon/__snapshots__/PhoneIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PhoneIcon 1`] = ` should render PhoneIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PhoneIcon 1`] = ` should render PhoneIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/PhoneIncomingIcon/__snapshots__/PhoneIncomingIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PhoneIncomingIcon/__snapshots__/PhoneIncomingIcon.native.test.tsx.snap index b6ab0b790bf..27f3743cb8c 100644 --- a/packages/blade/src/components/Icons/PhoneIncomingIcon/__snapshots__/PhoneIncomingIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PhoneIncomingIcon/__snapshots__/PhoneIncomingIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PhoneIncomingIcon 1`] = ` should render PhoneIncomingIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PhoneIncomingIcon 1`] = ` should render PhoneIncomingIcon 1`] = ` d="M22.7071 2.70711L17.4142 8H21C21.5523 8 22 8.44772 22 9C22 9.55228 21.5523 10 21 10H15.0007L14.997 10C14.7421 9.99924 14.4874 9.90161 14.2929 9.70711C14.197 9.61123 14.1247 9.50073 14.0759 9.38278C14.027 9.26488 14 9.13559 14 9V3C14 2.44772 14.4477 2 15 2C15.5523 2 16 2.44772 16 3V6.58579L21.2929 1.29289C21.6834 0.902369 22.3166 0.902369 22.7071 1.29289C23.0976 1.68342 23.0976 2.31658 22.7071 2.70711Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render PhoneIncomingIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/PhoneMissedIcon/__snapshots__/PhoneMissedIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PhoneMissedIcon/__snapshots__/PhoneMissedIcon.native.test.tsx.snap index 91220f247de..3059c7740a3 100644 --- a/packages/blade/src/components/Icons/PhoneMissedIcon/__snapshots__/PhoneMissedIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PhoneMissedIcon/__snapshots__/PhoneMissedIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PhoneMissedIcon 1`] = ` should render PhoneMissedIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PhoneMissedIcon 1`] = ` should render PhoneMissedIcon 1`] = ` d="M21.2929 1.29289C21.6834 0.902369 22.3166 0.902369 22.7071 1.29289C23.0976 1.68342 23.0976 2.31658 22.7071 2.70711L20.4142 5L22.7071 7.29289C23.0976 7.68342 23.0976 8.31658 22.7071 8.70711C22.3166 9.09763 21.6834 9.09763 21.2929 8.70711L19 6.41421L16.7071 8.70711C16.3166 9.09763 15.6834 9.09763 15.2929 8.70711C14.9024 8.31658 14.9024 7.68342 15.2929 7.29289L17.5858 5L15.2929 2.70711C14.9024 2.31658 14.9024 1.68342 15.2929 1.29289C15.6834 0.902369 16.3166 0.902369 16.7071 1.29289L19 3.58579L21.2929 1.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render PhoneMissedIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/PhoneOffIcon/__snapshots__/PhoneOffIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PhoneOffIcon/__snapshots__/PhoneOffIcon.native.test.tsx.snap index 12fa39054a5..76e10f4807c 100644 --- a/packages/blade/src/components/Icons/PhoneOffIcon/__snapshots__/PhoneOffIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PhoneOffIcon/__snapshots__/PhoneOffIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PhoneOffIcon 1`] = ` should render PhoneOffIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PhoneOffIcon 1`] = ` should render PhoneOffIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -68,7 +68,7 @@ exports[` should render PhoneOffIcon 1`] = ` d="M7.11985 2.99996C7.62052 2.99503 8.04746 3.36111 8.11931 3.85623C8.25597 4.88918 8.50883 5.9034 8.87311 6.87961L8.87395 6.88187C9.01105 7.24659 8.92381 7.65765 8.65057 7.93523L7.3829 9.2029C6.99237 9.59343 6.99237 10.2266 7.3829 10.6171C7.77342 11.0076 8.40659 11.0076 8.79711 10.6171L10.0671 9.34713L10.0711 9.34315C10.8943 8.51066 11.158 7.27537 10.7465 6.17936C10.4345 5.34307 10.2182 4.47417 10.1015 3.58924L10.1002 3.58006C9.88967 2.09079 8.60903 0.987878 7.10557 1.00001L4.10906 1.00001C3.26695 1.0008 2.46395 1.35549 1.89621 1.97744C1.32847 2.59939 1.04827 3.43132 1.12406 4.27001L1.12586 4.28803C1.47711 7.52069 2.58174 10.6259 4.35099 13.3541C4.65148 13.8175 5.27073 13.9495 5.73411 13.649C6.19748 13.3485 6.32952 12.7293 6.02902 12.2659C4.43188 9.80307 3.43399 7.00034 3.11529 4.08242C3.09238 3.80543 3.1858 3.53126 3.37333 3.32582C3.56248 3.1186 3.82998 3.00039 4.11053 3.00001L7.11 3.00006L7.11985 2.99996Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -82,7 +82,7 @@ exports[` should render PhoneOffIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/PhoneOutgoingIcon/__snapshots__/PhoneOutgoingIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PhoneOutgoingIcon/__snapshots__/PhoneOutgoingIcon.native.test.tsx.snap index 2d506f750cf..4ce87bbd0f4 100644 --- a/packages/blade/src/components/Icons/PhoneOutgoingIcon/__snapshots__/PhoneOutgoingIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PhoneOutgoingIcon/__snapshots__/PhoneOutgoingIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PhoneOutgoingIcon 1`] = ` should render PhoneOutgoingIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PhoneOutgoingIcon 1`] = ` should render PhoneOutgoingIcon 1`] = ` d="M15 2C15 1.44772 15.4477 1 16 1H22C22.5523 1 23 1.44772 23 2V8C23 8.55228 22.5523 9 22 9C21.4477 9 21 8.55228 21 8V4.41421L15.7071 9.70711C15.3166 10.0976 14.6834 10.0976 14.2929 9.70711C13.9024 9.31658 13.9024 8.68342 14.2929 8.29289L19.5858 3H16C15.4477 3 15 2.55228 15 2Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render PhoneOutgoingIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/PieChartIcon/__snapshots__/PieChartIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PieChartIcon/__snapshots__/PieChartIcon.native.test.tsx.snap index 9210b7ecb92..ec8ce1f9d80 100644 --- a/packages/blade/src/components/Icons/PieChartIcon/__snapshots__/PieChartIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PieChartIcon/__snapshots__/PieChartIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PieChartIcon 1`] = ` should render PieChartIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PieChartIcon 1`] = ` should render PieChartIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -65,7 +65,7 @@ exports[` should render PieChartIcon 1`] = ` d="M8.39997 3.74656C8.90615 3.52567 9.13743 2.93625 8.91654 2.43007C8.69565 1.92388 8.10623 1.6926 7.60005 1.91349C3.06956 3.89052 0.414221 8.64678 1.10871 13.5408C1.8032 18.4349 5.67694 22.2646 10.5786 22.9032C15.4803 23.5417 20.2059 20.8323 22.131 16.2795C22.3461 15.7708 22.1082 15.1841 21.5995 14.969C21.0908 14.7539 20.5041 14.9919 20.289 15.5006C18.7138 19.2256 14.8474 21.4424 10.837 20.9199C6.82652 20.3975 3.65709 17.2641 3.08887 13.2598C2.52065 9.25562 4.6932 5.36413 8.39997 3.74656Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/PlayCircleIcon/__snapshots__/PlayCircleIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PlayCircleIcon/__snapshots__/PlayCircleIcon.native.test.tsx.snap index b6901d21e7e..d0511f74fa1 100644 --- a/packages/blade/src/components/Icons/PlayCircleIcon/__snapshots__/PlayCircleIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PlayCircleIcon/__snapshots__/PlayCircleIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PlayCircleIcon 1`] = ` should render PlayCircleIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PlayCircleIcon 1`] = ` should render PlayCircleIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render PlayCircleIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/PlayIcon/__snapshots__/PlayIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PlayIcon/__snapshots__/PlayIcon.native.test.tsx.snap index f9cdbb9838c..3242b6407fe 100644 --- a/packages/blade/src/components/Icons/PlayIcon/__snapshots__/PlayIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PlayIcon/__snapshots__/PlayIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PlayIcon 1`] = ` should render PlayIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PlayIcon 1`] = ` should render PlayIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/PlusCircleIcon/__snapshots__/PlusCircleIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PlusCircleIcon/__snapshots__/PlusCircleIcon.native.test.tsx.snap index 8dd0a93b7d0..b59e9677c32 100644 --- a/packages/blade/src/components/Icons/PlusCircleIcon/__snapshots__/PlusCircleIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PlusCircleIcon/__snapshots__/PlusCircleIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PlusCircleIcon 1`] = ` should render PlusCircleIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PlusCircleIcon 1`] = ` should render PlusCircleIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/PlusIcon/__snapshots__/PlusIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PlusIcon/__snapshots__/PlusIcon.native.test.tsx.snap index 237f851ad55..b9f39c809dd 100644 --- a/packages/blade/src/components/Icons/PlusIcon/__snapshots__/PlusIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PlusIcon/__snapshots__/PlusIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PlusIcon 1`] = ` should render PlusIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PlusIcon 1`] = ` should render PlusIcon 1`] = ` d="M13 5a1 1 0 1 0-2 0v6H5a1 1 0 1 0 0 2h6v6a1 1 0 1 0 2 0v-6h6a1 1 0 1 0 0-2h-6V5Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/PlusSquareIcon/__snapshots__/PlusSquareIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PlusSquareIcon/__snapshots__/PlusSquareIcon.native.test.tsx.snap index 119d848abe6..0e35efb5897 100644 --- a/packages/blade/src/components/Icons/PlusSquareIcon/__snapshots__/PlusSquareIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PlusSquareIcon/__snapshots__/PlusSquareIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PlusSquareIcon 1`] = ` should render PlusSquareIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PlusSquareIcon 1`] = ` should render PlusSquareIcon 1`] = ` d="M12 7C12.5523 7 13 7.44772 13 8V11H16C16.5523 11 17 11.4477 17 12C17 12.5523 16.5523 13 16 13H13V16C13 16.5523 12.5523 17 12 17C11.4477 17 11 16.5523 11 16V13H8C7.44772 13 7 12.5523 7 12C7 11.4477 7.44772 11 8 11H11V8C11 7.44772 11.4477 7 12 7Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render PlusSquareIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/PocketIcon/__snapshots__/PocketIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PocketIcon/__snapshots__/PocketIcon.native.test.tsx.snap index 0fdb73261f8..f7d3ca2d201 100644 --- a/packages/blade/src/components/Icons/PocketIcon/__snapshots__/PocketIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PocketIcon/__snapshots__/PocketIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PocketIcon 1`] = ` should render PocketIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PocketIcon 1`] = ` should render PocketIcon 1`] = ` d="M8.70711 9.29289C8.31658 8.90237 7.68342 8.90237 7.29289 9.29289C6.90237 9.68342 6.90237 10.3166 7.29289 10.7071L11.2929 14.7071C11.6834 15.0976 12.3166 15.0976 12.7071 14.7071L16.7071 10.7071C17.0976 10.3166 17.0976 9.68342 16.7071 9.29289C16.3166 8.90237 15.6834 8.90237 15.2929 9.29289L12 12.5858L8.70711 9.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render PocketIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/PowerIcon/__snapshots__/PowerIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PowerIcon/__snapshots__/PowerIcon.native.test.tsx.snap index 738966be7ca..c9b63f28cc2 100644 --- a/packages/blade/src/components/Icons/PowerIcon/__snapshots__/PowerIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PowerIcon/__snapshots__/PowerIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PowerIcon 1`] = ` should render PowerIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PowerIcon 1`] = ` should render PowerIcon 1`] = ` d="M13 2C13 1.44772 12.5523 1 12 1C11.4477 1 11 1.44772 11 2V12C11 12.5523 11.4477 13 12 13C12.5523 13 13 12.5523 13 12V2Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render PowerIcon 1`] = ` d="M6.33722 7.34701C6.72768 6.95642 6.72757 6.32325 6.33699 5.93279C5.9464 5.54233 5.31323 5.54244 4.92277 5.93302C1.01847 9.8386 1.01916 16.1697 4.92431 20.0744C8.82947 23.9791 15.1605 23.9791 19.0657 20.0744C22.9708 16.1697 22.9715 9.8386 19.0672 5.93302C18.6768 5.54244 18.0436 5.54233 17.653 5.93279C17.2624 6.32325 17.2623 6.95642 17.6528 7.34701C20.7762 10.4715 20.7757 15.5363 17.6515 18.6601C14.5274 21.7839 9.46257 21.7839 6.33845 18.6601C3.21432 15.5363 3.21377 10.4715 6.33722 7.34701Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/PrinterIcon/__snapshots__/PrinterIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/PrinterIcon/__snapshots__/PrinterIcon.native.test.tsx.snap index ebc13b03af6..b104f81394d 100644 --- a/packages/blade/src/components/Icons/PrinterIcon/__snapshots__/PrinterIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/PrinterIcon/__snapshots__/PrinterIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render PrinterIcon 1`] = ` should render PrinterIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render PrinterIcon 1`] = ` should render PrinterIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/QRCodeIcon/__snapshots__/QRCodeIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/QRCodeIcon/__snapshots__/QRCodeIcon.native.test.tsx.snap index e645a47705d..d14e85eed42 100644 --- a/packages/blade/src/components/Icons/QRCodeIcon/__snapshots__/QRCodeIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/QRCodeIcon/__snapshots__/QRCodeIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render QRCodeIcon 1`] = ` should render QRCodeIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render QRCodeIcon 1`] = ` should render QRCodeIcon 1`] = ` d="M4 4.5C4 4.22386 4.22386 4 4.5 4H9.5C9.77614 4 10 4.22386 10 4.5V9.5C10 9.77614 9.77614 10 9.5 10H4.5C4.22386 10 4 9.77614 4 9.5V4.5ZM19.5 4C19.7761 4 20 4.22386 20 4.5V9.5C20 9.77614 19.7761 10 19.5 10H14.5C14.2239 10 14 9.77614 14 9.5V4.5C14 4.22386 14.2239 4 14.5 4H19.5ZM14 15.5C14 15.2239 14.2239 15 14.5 15H16V13H14.5C14.2239 13 14 12.7761 14 12.5V11.5C14 11.2239 14.2239 11 14.5 11H15.5C15.7761 11 16 11.2239 16 11.5V13H18V11.5C18 11.2239 18.2239 11 18.5 11H19.5C19.7761 11 20 11.2239 20 11.5V12.5C20 12.7761 19.7761 13 19.5 13H18V15H19.5C19.7761 15 20 15.2239 20 15.5V17.5C20 17.7761 19.7761 18 19.5 18H18V19.5C18 19.7761 17.7761 20 17.5 20H16.5C16.2239 20 16 19.7761 16 19.5V18H13.5C13.2239 18 13 18.2239 13 18.5V19.5C13 19.7761 12.7761 20 12.5 20H11.5C11.2239 20 11 19.7761 11 19.5V16.5C11 16.2239 11.2239 16 11.5 16H13.5C13.7761 16 14 15.7761 14 15.5ZM16 15V18H18V15H16ZM4.5 20C4.22386 20 4 19.7761 4 19.5V14.5C4 14.2239 4.22386 14 4.5 14H9.5C9.77614 14 10 14.2239 10 14.5V19.5C10 19.7761 9.77614 20 9.5 20H4.5ZM6.5 6C6.22386 6 6 6.22386 6 6.5V7.5C6 7.77614 6.22386 8 6.5 8H7.5C7.77614 8 8 7.77614 8 7.5V6.5C8 6.22386 7.77614 6 7.5 6H6.5ZM16.5 6C16.2239 6 16 6.22386 16 6.5V7.5C16 7.77614 16.2239 8 16.5 8H17.5C17.7761 8 18 7.77614 18 7.5V6.5C18 6.22386 17.7761 6 17.5 6H16.5ZM6.5 16C6.22386 16 6 16.2239 6 16.5V17.5C6 17.7761 6.22386 18 6.5 18H7.5C7.77614 18 8 17.7761 8 17.5V16.5C8 16.2239 7.77614 16 7.5 16H6.5ZM4 11.5C4 11.2239 4.22386 11 4.5 11H5.5C5.77614 11 6 11.2239 6 11.5V12.5C6 12.7761 5.77614 13 5.5 13H4.5C4.22386 13 4 12.7761 4 12.5V11.5ZM9 11.5C9 11.2239 9.22386 11 9.5 11H12.5C12.7761 11 13 11.2239 13 11.5V14.5C13 14.7761 12.7761 15 12.5 15H11.5C11.2239 15 11 14.7761 11 14.5V13.5C11 13.2239 10.7761 13 10.5 13H9.5C9.22386 13 9 12.7761 9 12.5V11.5ZM11 6.5C11 6.22386 11.2239 6 11.5 6H12.5C12.7761 6 13 6.22386 13 6.5V9.5C13 9.77614 12.7761 10 12.5 10H11.5C11.2239 10 11 9.77614 11 9.5V6.5ZM2.5 2C2.22386 2 2 2.22386 2 2.5V5.5C2 5.77614 1.77614 6 1.5 6H0.5C0.223858 6 0 5.77614 0 5.5V2C0 1.46957 0.210714 0.960859 0.585786 0.585786C0.960859 0.210714 1.46957 0 2 0L5.5 0C5.77614 0 6 0.223858 6 0.5V1.5C6 1.77614 5.77614 2 5.5 2H2.5ZM22 0C22.5304 0 23.0391 0.210714 23.4142 0.585786C23.7893 0.960859 24 1.46957 24 2V5.5C24 5.77614 23.7761 6 23.5 6H22.5C22.2239 6 22 5.77614 22 5.5V2.5C22 2.22386 21.7761 2 21.5 2H18.5C18.2239 2 18 1.77614 18 1.5V0.5C18 0.223858 18.2239 0 18.5 0H22ZM1.5 18C1.77614 18 2 18.2239 2 18.5V21.5C2 21.7761 2.22386 22 2.5 22H5.5C5.77614 22 6 22.2239 6 22.5V23.5C6 23.7761 5.77614 24 5.5 24H2C1.46957 24 0.960859 23.7893 0.585786 23.4142C0.210714 23.0391 0 22.5304 0 22V18.5C0 18.2239 0.223858 18 0.5 18H1.5ZM21.5 22C21.7761 22 22 21.7761 22 21.5V18.5C22 18.2239 22.2239 18 22.5 18H23.5C23.7761 18 24 18.2239 24 18.5V22C24 22.5304 23.7893 23.0391 23.4142 23.4142C23.0391 23.7893 22.5304 24 22 24H18.5C18.2239 24 18 23.7761 18 23.5V22.5C18 22.2239 18.2239 22 18.5 22H21.5Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -70,7 +70,7 @@ exports[` should render QRCodeIcon 1`] = ` fill={4294967295} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/RadioIcon/__snapshots__/RadioIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/RadioIcon/__snapshots__/RadioIcon.native.test.tsx.snap index a800f58257a..ac70c80cd1b 100644 --- a/packages/blade/src/components/Icons/RadioIcon/__snapshots__/RadioIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/RadioIcon/__snapshots__/RadioIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render RadioIcon 1`] = ` should render RadioIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render RadioIcon 1`] = ` should render RadioIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/RazorpayIcon/__snapshots__/RazorpayIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/RazorpayIcon/__snapshots__/RazorpayIcon.native.test.tsx.snap index e3acd0e3040..c9bb9e91275 100644 --- a/packages/blade/src/components/Icons/RazorpayIcon/__snapshots__/RazorpayIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/RazorpayIcon/__snapshots__/RazorpayIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render RazorpayIcon 1`] = ` should render RazorpayIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render RazorpayIcon 1`] = ` should render RazorpayIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/RazorpayXIcon/__snapshots__/RazorpayXIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/RazorpayXIcon/__snapshots__/RazorpayXIcon.native.test.tsx.snap index 607aa7ce9b5..3edc2848e44 100644 --- a/packages/blade/src/components/Icons/RazorpayXIcon/__snapshots__/RazorpayXIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/RazorpayXIcon/__snapshots__/RazorpayXIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render RazorpayXIcon 1`] = ` should render RazorpayXIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render RazorpayXIcon 1`] = ` should render RazorpayXIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/RefreshIcon/__snapshots__/RefreshIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/RefreshIcon/__snapshots__/RefreshIcon.native.test.tsx.snap index a4462887da9..40d12f8b89d 100644 --- a/packages/blade/src/components/Icons/RefreshIcon/__snapshots__/RefreshIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/RefreshIcon/__snapshots__/RefreshIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render RefreshIcon 1`] = ` should render RefreshIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render RefreshIcon 1`] = ` should render RefreshIcon 1`] = ` d="M10.229 4.2a8 8 0 0 1 7.446 2.169L20.525 9H17a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1V4a1 1 0 1 0-2 0v3.64l-2.944-2.718A10 10 0 0 0 2.567 8.666a1 1 0 0 0 1.886.668A8 8 0 0 1 10.229 4.2ZM2 16.36V20a1 1 0 1 1-2 0v-6a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H3.474l2.85 2.631a8 8 0 0 0 13.223-2.965 1 1 0 0 1 1.886.668 10 10 0 0 1-16.489 3.744L2 16.361Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/RepeatIcon/__snapshots__/RepeatIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/RepeatIcon/__snapshots__/RepeatIcon.native.test.tsx.snap index 6edbd413f63..ed80f478e76 100644 --- a/packages/blade/src/components/Icons/RepeatIcon/__snapshots__/RepeatIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/RepeatIcon/__snapshots__/RepeatIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render RepeatIcon 1`] = ` should render RepeatIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render RepeatIcon 1`] = ` should render RepeatIcon 1`] = ` d="M17.7071 0.292893C17.3166 -0.0976311 16.6834 -0.0976311 16.2929 0.292893C15.9024 0.683417 15.9024 1.31658 16.2929 1.70711L18.5858 4H7C4.23858 4 2 6.23858 2 9V11C2 11.5523 2.44772 12 3 12C3.55228 12 4 11.5523 4 11V9C4 7.34315 5.34315 6 7 6H18.5858L16.2929 8.29289C15.9024 8.68342 15.9024 9.31658 16.2929 9.70711C16.6834 10.0976 17.3166 10.0976 17.7071 9.70711L21.7071 5.70711C22.0976 5.31658 22.0976 4.68342 21.7071 4.29289L17.7071 0.292893Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -65,7 +65,7 @@ exports[` should render RepeatIcon 1`] = ` d="M7.70711 14.2929C8.09763 14.6834 8.09763 15.3166 7.70711 15.7071L5.41421 18H17C18.6569 18 20 16.6569 20 15V13C20 12.4477 20.4477 12 21 12C21.5523 12 22 12.4477 22 13V15C22 17.7614 19.7614 20 17 20H5.41421L7.70711 22.2929C8.09763 22.6834 8.09763 23.3166 7.70711 23.7071C7.31658 24.0976 6.68342 24.0976 6.29289 23.7071L2.29289 19.7071C1.90237 19.3166 1.90237 18.6834 2.29289 18.2929L6.29289 14.2929C6.68342 13.9024 7.31658 13.9024 7.70711 14.2929Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -79,7 +79,7 @@ exports[` should render RepeatIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ReportsIcon/__snapshots__/ReportsIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ReportsIcon/__snapshots__/ReportsIcon.native.test.tsx.snap index 918e0a4207f..41ab2b1a957 100644 --- a/packages/blade/src/components/Icons/ReportsIcon/__snapshots__/ReportsIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ReportsIcon/__snapshots__/ReportsIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ReportsIcon 1`] = ` should render ReportsIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ReportsIcon 1`] = ` should render ReportsIcon 1`] = ` d="M4 6H2V20C2 21.1 2.9 22 4 22H18V20H4V6ZM20 2H8C6.9 2 6 2.9 6 4V16C6 17.1 6.9 18 8 18H20C21.1 18 22 17.1 22 16V4C22 2.9 21.1 2 20 2ZM19 11H9V9H19V11ZM15 15H9V13H15V15ZM19 7H9V5H19V7Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/RewindIcon/__snapshots__/RewindIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/RewindIcon/__snapshots__/RewindIcon.native.test.tsx.snap index d5adc65c615..9a7199d2f7f 100644 --- a/packages/blade/src/components/Icons/RewindIcon/__snapshots__/RewindIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/RewindIcon/__snapshots__/RewindIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render RewindIcon 1`] = ` should render RewindIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render RewindIcon 1`] = ` should render RewindIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/RotateClockWiseIcon/__snapshots__/RotateClockWiseIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/RotateClockWiseIcon/__snapshots__/RotateClockWiseIcon.native.test.tsx.snap index da7cf8afbc6..298da8a7e05 100644 --- a/packages/blade/src/components/Icons/RotateClockWiseIcon/__snapshots__/RotateClockWiseIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/RotateClockWiseIcon/__snapshots__/RotateClockWiseIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render RotateClockWiseIcon 1`] = ` should render RotateClockWiseIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render RotateClockWiseIcon 1`] = ` should render RotateClockWiseIcon 1`] = ` d="M7.14125 4.99635C10.2617 3.27579 14.1439 3.82644 16.6627 6.34689C16.6699 6.35405 16.6771 6.36109 16.6845 6.36802L19.528 9H16C15.4477 9 15 9.44772 15 10C15 10.5523 15.4477 11 16 11H22C22.5523 11 23 10.5523 23 10V4C23 3.44772 22.5523 3 22 3C21.4477 3 21 3.44772 21 4V7.63742L18.0664 4.92215C14.9175 1.78097 10.0715 1.09674 6.17554 3.24495C2.27503 5.39565 0.267187 9.86684 1.25111 14.211C2.23504 18.5551 5.97351 21.7248 10.4201 21.9849C14.8666 22.245 18.9492 19.5329 20.4329 15.3331C20.6169 14.8124 20.3439 14.2411 19.8232 14.0571C19.3024 13.8731 18.7311 14.1462 18.5472 14.6669C17.3602 18.0267 14.0941 20.1964 10.5369 19.9883C6.97962 19.7802 3.98884 17.2445 3.2017 13.7692C2.41456 10.2939 4.02084 6.71691 7.14125 4.99635Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/RotateCounterClockWiseIcon/__snapshots__/RotateCounterClockWiseIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/RotateCounterClockWiseIcon/__snapshots__/RotateCounterClockWiseIcon.native.test.tsx.snap index 27a4a61cf35..9d463741c64 100644 --- a/packages/blade/src/components/Icons/RotateCounterClockWiseIcon/__snapshots__/RotateCounterClockWiseIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/RotateCounterClockWiseIcon/__snapshots__/RotateCounterClockWiseIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render RotateCounterClockWiseIcon 1`] = ` should render RotateCounterClockWiseIcon minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render RotateCounterClockWiseIcon should render RotateCounterClockWiseIcon d="M17.8366 3.25759C13.9432 1.10528 9.09681 1.784 5.94449 4.92134L3 7.63918V4C3 3.44772 2.55228 3 2 3C1.44772 3 1 3.44772 1 4V10C1 10.5523 1.44772 11 2 11H8C8.55228 11 9 10.5523 9 10C9 9.44772 8.55228 9 8 9H4.47426L7.32478 6.36875C7.33213 6.36185 7.33937 6.35483 7.34651 6.34771C9.86814 3.83034 13.7507 3.28409 16.869 5.00794C19.9874 6.7318 21.5898 10.3102 20.7992 13.7845C20.0085 17.2588 17.0155 19.7914 13.4583 19.9961C9.90104 20.2009 6.63718 18.0283 5.45318 14.6677C5.26966 14.1468 4.69861 13.8733 4.17771 14.0568C3.65681 14.2403 3.38331 14.8114 3.56683 15.3323C5.04683 19.5331 9.12665 22.2487 13.5732 21.9928C18.0197 21.7369 21.761 18.5711 22.7493 14.2283C23.7376 9.8854 21.7346 5.41241 17.8366 3.25759Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/RoutesIcon/__snapshots__/RoutesIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/RoutesIcon/__snapshots__/RoutesIcon.native.test.tsx.snap index e2a6ca5ea56..d8e1312ee2e 100644 --- a/packages/blade/src/components/Icons/RoutesIcon/__snapshots__/RoutesIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/RoutesIcon/__snapshots__/RoutesIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render RoutesIcon 1`] = ` should render RoutesIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render RoutesIcon 1`] = ` should render RoutesIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/RupeeIcon/__snapshots__/RupeeIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/RupeeIcon/__snapshots__/RupeeIcon.native.test.tsx.snap index eadfda8ff0b..ac52ed46854 100644 --- a/packages/blade/src/components/Icons/RupeeIcon/__snapshots__/RupeeIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/RupeeIcon/__snapshots__/RupeeIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render RupeeIcon 1`] = ` should render RupeeIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render RupeeIcon 1`] = ` should render RupeeIcon 1`] = ` d="M17 7.78125L16.5015 9.59375H7L7.49853 7.78125H17ZM12.5425 20L7.17595 13L7.14663 11.6875H9.81525C10.5093 11.6875 11.1007 11.5833 11.5894 11.375C12.0782 11.1615 12.4521 10.8437 12.7111 10.4219C12.9702 9.99479 13.0997 9.45833 13.0997 8.8125C13.0997 7.85937 12.8309 7.11198 12.2933 6.57031C11.7556 6.02344 10.9296 5.75 9.81525 5.75H7L7.49853 4H9.81525C11.0078 4 11.9853 4.21094 12.7478 4.63281C13.5152 5.04948 14.0821 5.6224 14.4487 6.35156C14.8201 7.07552 15.0059 7.89583 15.0059 8.8125C15.0059 9.64062 14.8348 10.4036 14.4927 11.1016C14.1554 11.7943 13.6129 12.3516 12.8651 12.7734C12.1222 13.1953 11.1398 13.4062 9.91789 13.4062H9.8739L14.8299 19.875V20H12.5425ZM17 4L16.5015 5.8125L9.02346 5.75L9.52199 4H17Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/RupeesIcon/__snapshots__/RupeesIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/RupeesIcon/__snapshots__/RupeesIcon.native.test.tsx.snap index 43148d672ef..8b25ff7d43c 100644 --- a/packages/blade/src/components/Icons/RupeesIcon/__snapshots__/RupeesIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/RupeesIcon/__snapshots__/RupeesIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render RupeesIcon 1`] = ` should render RupeesIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render RupeesIcon 1`] = ` should render RupeesIcon 1`] = ` d="M17 7.78125L16.5015 9.59375H7L7.49853 7.78125H17ZM12.5425 20L7.17595 13L7.14663 11.6875H9.81525C10.5093 11.6875 11.1007 11.5833 11.5894 11.375C12.0782 11.1615 12.4521 10.8437 12.7111 10.4219C12.9702 9.99479 13.0997 9.45833 13.0997 8.8125C13.0997 7.85937 12.8309 7.11198 12.2933 6.57031C11.7556 6.02344 10.9296 5.75 9.81525 5.75H7L7.49853 4H9.81525C11.0078 4 11.9853 4.21094 12.7478 4.63281C13.5152 5.04948 14.0821 5.6224 14.4487 6.35156C14.8201 7.07552 15.0059 7.89583 15.0059 8.8125C15.0059 9.64062 14.8348 10.4036 14.4927 11.1016C14.1554 11.7943 13.6129 12.3516 12.8651 12.7734C12.1222 13.1953 11.1398 13.4062 9.91789 13.4062H9.8739L14.8299 19.875V20H12.5425ZM17 4L16.5015 5.8125L9.02346 5.75L9.52199 4H17Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/SaveIcon/__snapshots__/SaveIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SaveIcon/__snapshots__/SaveIcon.native.test.tsx.snap index 4b5ed661f07..5a97734476f 100644 --- a/packages/blade/src/components/Icons/SaveIcon/__snapshots__/SaveIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SaveIcon/__snapshots__/SaveIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SaveIcon 1`] = ` should render SaveIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SaveIcon 1`] = ` should render SaveIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ScissorsIcon/__snapshots__/ScissorsIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ScissorsIcon/__snapshots__/ScissorsIcon.native.test.tsx.snap index 7669e3d573c..d9d56b3dff7 100644 --- a/packages/blade/src/components/Icons/ScissorsIcon/__snapshots__/ScissorsIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ScissorsIcon/__snapshots__/ScissorsIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ScissorsIcon 1`] = ` should render ScissorsIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ScissorsIcon 1`] = ` should render ScissorsIcon 1`] = ` d="M6 9C7.65685 9 9 7.65685 9 6C9 4.34315 7.65685 3 6 3C4.34315 3 3 4.34315 3 6C3 7.65685 4.34315 9 6 9Z" fillRule={0} propList={ - Array [ + [ "fillRule", "stroke", "strokeWidth", @@ -75,7 +75,7 @@ exports[` should render ScissorsIcon 1`] = ` d="M6 21C7.65685 21 9 19.6569 9 18C9 16.3431 7.65685 15 6 15C4.34315 15 3 16.3431 3 18C3 19.6569 4.34315 21 6 21Z" fillRule={0} propList={ - Array [ + [ "fillRule", "stroke", "strokeWidth", @@ -91,7 +91,7 @@ exports[` should render ScissorsIcon 1`] = ` should render ScissorsIcon 1`] = ` should render ScissorsIcon 1`] = ` should render ScissorsIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/SearchIcon/__snapshots__/SearchIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SearchIcon/__snapshots__/SearchIcon.native.test.tsx.snap index 915ee9a37f0..0a631bcfd75 100644 --- a/packages/blade/src/components/Icons/SearchIcon/__snapshots__/SearchIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SearchIcon/__snapshots__/SearchIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SearchIcon 1`] = ` should render SearchIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SearchIcon 1`] = ` should render SearchIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/SendIcon/__snapshots__/SendIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SendIcon/__snapshots__/SendIcon.native.test.tsx.snap index c76b3f029c4..5f91d1e71da 100644 --- a/packages/blade/src/components/Icons/SendIcon/__snapshots__/SendIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SendIcon/__snapshots__/SendIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SendIcon 1`] = ` should render SendIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SendIcon 1`] = ` should render SendIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ServerIcon/__snapshots__/ServerIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ServerIcon/__snapshots__/ServerIcon.native.test.tsx.snap index bc12d5720a1..1d004e62202 100644 --- a/packages/blade/src/components/Icons/ServerIcon/__snapshots__/ServerIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ServerIcon/__snapshots__/ServerIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ServerIcon 1`] = ` should render ServerIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ServerIcon 1`] = ` should render ServerIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render ServerIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -77,7 +77,7 @@ exports[` should render ServerIcon 1`] = ` d="M7 6C7 6.55228 6.55228 7 6 7C5.44772 7 5 6.55228 5 6C5 5.44772 5.44772 5 6 5C6.55228 5 7 5.44772 7 6Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -86,7 +86,7 @@ exports[` should render ServerIcon 1`] = ` d="M7 18C7 18.5523 6.55228 19 6 19C5.44772 19 5 18.5523 5 18C5 17.4477 5.44772 17 6 17C6.55228 17 7 17.4477 7 18Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/SettingsIcon/__snapshots__/SettingsIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SettingsIcon/__snapshots__/SettingsIcon.native.test.tsx.snap index 02948389d25..9e51181d55a 100644 --- a/packages/blade/src/components/Icons/SettingsIcon/__snapshots__/SettingsIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SettingsIcon/__snapshots__/SettingsIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SettingsIcon 1`] = ` should render SettingsIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SettingsIcon 1`] = ` should render SettingsIcon 1`] = ` d="M8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12ZM12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render SettingsIcon 1`] = ` d="M12 2C11.4477 2 11 2.44772 11 3V3.17399C10.9958 4.2302 10.3647 5.18306 9.39393 5.59914C9.30943 5.63535 9.22054 5.65966 9.1298 5.67154C8.18476 6.00287 7.12514 5.77346 6.40073 5.06486L6.39285 5.05715L6.33289 4.99711C6.14533 4.80933 5.89041 4.70343 5.625 4.70343C5.35959 4.70343 5.10507 4.80894 4.9175 4.99671L4.91671 4.9975C4.72894 5.18507 4.62343 5.43959 4.62343 5.705C4.62343 5.97041 4.72894 6.22493 4.91671 6.4125L4.98491 6.48069C5.73506 7.24758 5.94813 8.39018 5.52745 9.37478C5.14428 10.3797 4.19067 11.0545 3.11338 11.0797L3.09 11.08H3C2.44772 11.08 2 11.5277 2 12.08C2 12.6323 2.44772 13.08 3 13.08H3.17399C4.22841 13.0842 5.17982 13.7131 5.59701 14.6811C6.03158 15.6711 5.82114 16.8261 5.06486 17.5993L5.05715 17.6071L4.99711 17.6671C4.80933 17.8547 4.70343 18.1096 4.70343 18.375C4.70343 18.6404 4.80894 18.8949 4.99671 19.0825L4.9975 19.0833C5.18507 19.2711 5.43959 19.3766 5.705 19.3766C5.97041 19.3766 6.22493 19.2711 6.4125 19.0833L6.48069 19.0151C7.24757 18.2649 8.39018 18.0519 9.37477 18.4725C10.3797 18.8557 11.0545 19.8093 11.0797 20.8866L11.08 20.91V21C11.08 21.5523 11.5277 22 12.08 22C12.6323 22 13.08 21.5523 13.08 21V20.83L13.08 20.826C13.0842 19.7716 13.7132 18.8201 14.6812 18.4029C15.6712 17.9684 16.8261 18.1789 17.5993 18.9351L17.6071 18.9428L17.6671 19.0029C17.8547 19.1907 18.1096 19.2966 18.375 19.2966C18.6404 19.2966 18.8949 19.1911 19.0825 19.0033L19.0833 19.0025C19.2711 18.8149 19.3766 18.5604 19.3766 18.295C19.3766 18.0296 19.2711 17.7751 19.0833 17.5875L19.0151 17.5193C18.2588 16.7462 18.0484 15.5912 18.4829 14.6012C18.9001 13.6332 19.8516 13.0042 20.906 13L20.91 13L21 13C21.5523 13 22 12.5523 22 12C22 11.4477 21.5523 11 21 11H20.83L20.826 11C19.7698 10.9958 18.8169 10.3647 18.4009 9.39393C18.3646 9.30943 18.3403 9.22054 18.3285 9.1298C17.9971 8.18476 18.2265 7.12514 18.9351 6.40073L18.9428 6.39285L19.0029 6.3329C19.1907 6.14533 19.2966 5.89041 19.2966 5.625C19.2966 5.35959 19.1911 5.10507 19.0033 4.9175L19.0025 4.91671C18.8149 4.72894 18.5604 4.62343 18.295 4.62343C18.0296 4.62343 17.7751 4.72894 17.5875 4.91671L17.5193 4.98491C16.7462 5.74119 15.5911 5.95158 14.6011 5.51701C13.6331 5.09982 13.0042 4.14841 13 3.09399L13 3.09V3C13 2.44772 12.5523 2 12 2ZM9 3C9 1.34315 10.3431 0 12 0C13.6569 0 15 1.34315 15 3V3.0875C15.0016 3.34598 15.1563 3.579 15.3939 3.68086L15.4038 3.68508C15.6456 3.7918 15.9277 3.74149 16.1177 3.55811L16.1725 3.50329C16.7352 2.93996 17.4988 2.62343 18.295 2.62343C19.0912 2.62343 19.8548 2.93996 20.4175 3.50329C20.9803 4.06592 21.2966 4.82914 21.2966 5.625C21.2966 6.42104 20.9802 7.18444 20.4171 7.7471L20.3619 7.80231C20.1785 7.99225 20.1281 8.27444 20.2349 8.51624C20.2631 8.58029 20.2845 8.64696 20.2988 8.71513C20.4175 8.88998 20.6161 8.99864 20.8325 9H21C22.6569 9 24 10.3431 24 12C24 13.6569 22.6569 15 21 15H20.9125C20.654 15.0016 20.421 15.1563 20.3191 15.3939L20.3149 15.4038C20.2082 15.6456 20.2585 15.9277 20.4419 16.1177L20.4967 16.1725C21.0598 16.7352 21.3766 17.499 21.3766 18.295C21.3766 19.091 21.0602 19.8544 20.4971 20.4171C19.9344 20.9802 19.171 21.2966 18.375 21.2966C17.579 21.2966 16.8156 20.9802 16.2529 20.4171L16.1977 20.3619C16.0077 20.1785 15.7256 20.1282 15.4838 20.2349L15.474 20.2392C15.2363 20.3411 15.0816 20.574 15.08 20.8325V21C15.08 22.6569 13.7369 24 12.08 24C10.4231 24 9.08 22.6569 9.08 21V20.9244C9.07021 20.6612 8.90248 20.4296 8.65482 20.3385C8.63505 20.3313 8.61551 20.3234 8.59624 20.3149C8.35443 20.2081 8.07224 20.2585 7.8823 20.4419L7.8275 20.4967C7.26483 21.0598 6.50105 21.3766 5.705 21.3766C4.90914 21.3766 4.14592 21.0603 3.58329 20.4975C3.01996 19.9348 2.70343 19.1712 2.70343 18.375C2.70343 17.5788 3.01996 16.8152 3.58329 16.2525L3.63811 16.1977C3.82149 16.0077 3.87185 15.7256 3.76514 15.4838L3.76081 15.474C3.65895 15.2363 3.42598 15.0816 3.1675 15.08H3C1.34315 15.08 0 13.7369 0 12.08C0 10.4231 1.34315 9.08 3 9.08H3.07565C3.33875 9.07021 3.57038 8.90248 3.66146 8.65482C3.66874 8.63505 3.67663 8.61551 3.68514 8.59624C3.79185 8.35444 3.74149 8.07225 3.5581 7.88231L3.50329 7.8275C2.93996 7.2648 2.62343 6.50123 2.62343 5.705C2.62343 4.90896 2.93981 4.14556 3.50289 3.58289C4.06556 3.01981 4.82896 2.70343 5.625 2.70343C6.42123 2.70343 7.1848 3.01996 7.7475 3.58329L7.80231 3.6381C7.99225 3.82149 8.27444 3.87185 8.51624 3.76514C8.5803 3.73687 8.64697 3.71548 8.71514 3.70121C8.88999 3.58253 8.99864 3.38394 9 3.1675V3Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/SettlementsIcon/__snapshots__/SettlementsIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SettlementsIcon/__snapshots__/SettlementsIcon.native.test.tsx.snap index 52fdaa9cbb2..20f11c71e15 100644 --- a/packages/blade/src/components/Icons/SettlementsIcon/__snapshots__/SettlementsIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SettlementsIcon/__snapshots__/SettlementsIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SettlementsIcon 1`] = ` should render SettlementsIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SettlementsIcon 1`] = ` should render SettlementsIcon 1`] = ` d="m22.763 7.879-7.797 9.697c-.097.118-.22.216-.362.29a1.283 1.283 0 0 1-.461.134h-.11c-.293 0-.575-.099-.79-.276l-3.58-2.957-2.054 2.582a1.059 1.059 0 0 1-.357.302c-.142.075-.302.12-.467.132h-.11c-.29.004-.57-.095-.779-.276l-4.502-3.705a1.01 1.01 0 0 1-.281-.321.906.906 0 0 1-.036-.798.984.984 0 0 1 .25-.34 1.09 1.09 0 0 1 .358-.252 1.2 1.2 0 0 1 1.268.193l3.558 2.907 7.006-8.742c.083-.115.192-.213.32-.288a1.22 1.22 0 0 1 .877-.13c.148.035.286.097.406.182.13.075.241.173.326.289a.928.928 0 0 1 .166.383.887.887 0 0 1-.022.41.95.95 0 0 1-.207.367l-4.392 5.41 2.833 2.346 7.072-8.752a1.05 1.05 0 0 1 .322-.286 1.22 1.22 0 0 1 .876-.124c.148.035.286.098.405.184.129.074.238.172.322.287a.93.93 0 0 1 .164.38.887.887 0 0 1-.02.407.949.949 0 0 1-.202.365Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ShareIcon/__snapshots__/ShareIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ShareIcon/__snapshots__/ShareIcon.native.test.tsx.snap index 15622934e84..6ee18029a91 100644 --- a/packages/blade/src/components/Icons/ShareIcon/__snapshots__/ShareIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ShareIcon/__snapshots__/ShareIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ShareIcon 1`] = ` should render ShareIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ShareIcon 1`] = ` should render ShareIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render ShareIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -79,7 +79,7 @@ exports[` should render ShareIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -91,7 +91,7 @@ exports[` should render ShareIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -103,7 +103,7 @@ exports[` should render ShareIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ShieldIcon/__snapshots__/ShieldIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ShieldIcon/__snapshots__/ShieldIcon.native.test.tsx.snap index 1a7bc9fb0b2..ff9fdd6382e 100644 --- a/packages/blade/src/components/Icons/ShieldIcon/__snapshots__/ShieldIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ShieldIcon/__snapshots__/ShieldIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ShieldIcon 1`] = ` should render ShieldIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ShieldIcon 1`] = ` should render ShieldIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ShoppingCartIcon/__snapshots__/ShoppingCartIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ShoppingCartIcon/__snapshots__/ShoppingCartIcon.native.test.tsx.snap index c27a6103cb3..6f5fb7bed4c 100644 --- a/packages/blade/src/components/Icons/ShoppingCartIcon/__snapshots__/ShoppingCartIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ShoppingCartIcon/__snapshots__/ShoppingCartIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ShoppingCartIcon 1`] = ` should render ShoppingCartIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ShoppingCartIcon 1`] = ` should render ShoppingCartIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -70,7 +70,7 @@ exports[` should render ShoppingCartIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -82,7 +82,7 @@ exports[` should render ShoppingCartIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -97,7 +97,7 @@ exports[` should render ShoppingCartIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ShuffleIcon/__snapshots__/ShuffleIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ShuffleIcon/__snapshots__/ShuffleIcon.native.test.tsx.snap index ab7799cb655..e01a28576fa 100644 --- a/packages/blade/src/components/Icons/ShuffleIcon/__snapshots__/ShuffleIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ShuffleIcon/__snapshots__/ShuffleIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ShuffleIcon 1`] = ` should render ShuffleIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ShuffleIcon 1`] = ` should render ShuffleIcon 1`] = ` d="M14 3a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V5.414L3.707 20.707a1 1 0 0 1-1.414-1.414L17.586 4H15a1 1 0 0 1-1-1ZM21 16a1 1 0 1 0-2 0v2.586l-4.293-4.293a1 1 0 0 0-1.414 1.414L17.586 20H15a1 1 0 1 0 0 2h5a1 1 0 0 0 1-1v-5ZM3.707 3.293a1 1 0 0 0-1.414 1.414l5 5a1 1 0 0 0 1.414-1.414l-5-5Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/SidebarIcon/__snapshots__/SidebarIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SidebarIcon/__snapshots__/SidebarIcon.native.test.tsx.snap index b6e4691b4d7..55bb4edfcf7 100644 --- a/packages/blade/src/components/Icons/SidebarIcon/__snapshots__/SidebarIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SidebarIcon/__snapshots__/SidebarIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SidebarIcon 1`] = ` should render SidebarIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SidebarIcon 1`] = ` should render SidebarIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/SkipBackIcon/__snapshots__/SkipBackIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SkipBackIcon/__snapshots__/SkipBackIcon.native.test.tsx.snap index 0d65aeff11b..d0ce4c99dca 100644 --- a/packages/blade/src/components/Icons/SkipBackIcon/__snapshots__/SkipBackIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SkipBackIcon/__snapshots__/SkipBackIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SkipBackIcon 1`] = ` should render SkipBackIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SkipBackIcon 1`] = ` should render SkipBackIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -65,7 +65,7 @@ exports[` should render SkipBackIcon 1`] = ` d="M6 5C6 4.44772 5.55228 4 5 4C4.44772 4 4 4.44772 4 5V19C4 19.5523 4.44772 20 5 20C5.55228 20 6 19.5523 6 19V5Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/SkipForwardIcon/__snapshots__/SkipForwardIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SkipForwardIcon/__snapshots__/SkipForwardIcon.native.test.tsx.snap index d66fb58a869..ea91c2d37e3 100644 --- a/packages/blade/src/components/Icons/SkipForwardIcon/__snapshots__/SkipForwardIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SkipForwardIcon/__snapshots__/SkipForwardIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SkipForwardIcon 1`] = ` should render SkipForwardIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SkipForwardIcon 1`] = ` should render SkipForwardIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render SkipForwardIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/SlackIcon/__snapshots__/SlackIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SlackIcon/__snapshots__/SlackIcon.native.test.tsx.snap index f3e00a32da7..796a66edb8e 100644 --- a/packages/blade/src/components/Icons/SlackIcon/__snapshots__/SlackIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SlackIcon/__snapshots__/SlackIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SlackIcon 1`] = ` should render SlackIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SlackIcon 1`] = ` should render SlackIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -70,7 +70,7 @@ exports[` should render SlackIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -85,7 +85,7 @@ exports[` should render SlackIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/SlashIcon/__snapshots__/SlashIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SlashIcon/__snapshots__/SlashIcon.native.test.tsx.snap index ccf6099c3f3..6729bacfbe9 100644 --- a/packages/blade/src/components/Icons/SlashIcon/__snapshots__/SlashIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SlashIcon/__snapshots__/SlashIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SlashIcon 1`] = ` should render SlashIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SlashIcon 1`] = ` should render SlashIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/SlidersIcon/__snapshots__/SlidersIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SlidersIcon/__snapshots__/SlidersIcon.native.test.tsx.snap index 870f33b1a4d..49938ac705f 100644 --- a/packages/blade/src/components/Icons/SlidersIcon/__snapshots__/SlidersIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SlidersIcon/__snapshots__/SlidersIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SlidersIcon 1`] = ` should render SlidersIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SlidersIcon 1`] = ` should render SlidersIcon 1`] = ` d="M4 2C4.55228 2 5 2.44772 5 3V10C5 10.5523 4.55228 11 4 11C3.44772 11 3 10.5523 3 10V3C3 2.44772 3.44772 2 4 2Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render SlidersIcon 1`] = ` d="M5 15H7C7.55228 15 8 14.5523 8 14C8 13.4477 7.55228 13 7 13H1C0.447715 13 0 13.4477 0 14C0 14.5523 0.447715 15 1 15H3V21C3 21.5523 3.44772 22 4 22C4.55228 22 5 21.5523 5 21V15Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -71,7 +71,7 @@ exports[` should render SlidersIcon 1`] = ` d="M13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12V21C11 21.5523 11.4477 22 12 22C12.5523 22 13 21.5523 13 21V12Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -80,7 +80,7 @@ exports[` should render SlidersIcon 1`] = ` d="M12 2C12.5523 2 13 2.44772 13 3V7H15C15.5523 7 16 7.44772 16 8C16 8.55228 15.5523 9 15 9H9C8.44771 9 8 8.55228 8 8C8 7.44772 8.44771 7 9 7H11V3C11 2.44772 11.4477 2 12 2Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -89,7 +89,7 @@ exports[` should render SlidersIcon 1`] = ` d="M23 15C23.5523 15 24 15.4477 24 16C24 16.5523 23.5523 17 23 17H21V21C21 21.5523 20.5523 22 20 22C19.4477 22 19 21.5523 19 21V17H17C16.4477 17 16 16.5523 16 16C16 15.4477 16.4477 15 17 15H23Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -98,7 +98,7 @@ exports[` should render SlidersIcon 1`] = ` d="M20 2C20.5523 2 21 2.44772 21 3V12C21 12.5523 20.5523 13 20 13C19.4477 13 19 12.5523 19 12V3C19 2.44772 19.4477 2 20 2Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/SmartCollectIcon/__snapshots__/SmartCollectIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SmartCollectIcon/__snapshots__/SmartCollectIcon.native.test.tsx.snap index 96680c31332..897112babea 100644 --- a/packages/blade/src/components/Icons/SmartCollectIcon/__snapshots__/SmartCollectIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SmartCollectIcon/__snapshots__/SmartCollectIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SmartCollectIcon 1`] = ` should render SmartCollectIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SmartCollectIcon 1`] = ` should render SmartCollectIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/SmartphoneIcon/__snapshots__/SmartphoneIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SmartphoneIcon/__snapshots__/SmartphoneIcon.native.test.tsx.snap index bd5ead801eb..dc955a07f89 100644 --- a/packages/blade/src/components/Icons/SmartphoneIcon/__snapshots__/SmartphoneIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SmartphoneIcon/__snapshots__/SmartphoneIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SmartphoneIcon 1`] = ` should render SmartphoneIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SmartphoneIcon 1`] = ` should render SmartphoneIcon 1`] = ` d="M12 19C12.5523 19 13 18.5523 13 18C13 17.4477 12.5523 17 12 17C11.4477 17 11 17.4477 11 18C11 18.5523 11.4477 19 12 19Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render SmartphoneIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/SpeakerIcon/__snapshots__/SpeakerIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SpeakerIcon/__snapshots__/SpeakerIcon.native.test.tsx.snap index 8144ba32f6a..f0f54b1bf6d 100644 --- a/packages/blade/src/components/Icons/SpeakerIcon/__snapshots__/SpeakerIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SpeakerIcon/__snapshots__/SpeakerIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SpeakerIcon 1`] = ` should render SpeakerIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SpeakerIcon 1`] = ` should render SpeakerIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -65,7 +65,7 @@ exports[` should render SpeakerIcon 1`] = ` d="M12 7C12.5523 7 13 6.55228 13 6C13 5.44772 12.5523 5 12 5C11.4477 5 11 5.44772 11 6C11 6.55228 11.4477 7 12 7Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -76,7 +76,7 @@ exports[` should render SpeakerIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/SquareIcon/__snapshots__/SquareIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SquareIcon/__snapshots__/SquareIcon.native.test.tsx.snap index 2142326cd37..6da9730de9f 100644 --- a/packages/blade/src/components/Icons/SquareIcon/__snapshots__/SquareIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SquareIcon/__snapshots__/SquareIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SquareIcon 1`] = ` should render SquareIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SquareIcon 1`] = ` should render SquareIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/StampIcon/__snapshots__/StampIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/StampIcon/__snapshots__/StampIcon.native.test.tsx.snap index 7c52956b2a9..caaad8c576c 100644 --- a/packages/blade/src/components/Icons/StampIcon/__snapshots__/StampIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/StampIcon/__snapshots__/StampIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render StampIcon 1`] = ` should render StampIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render StampIcon 1`] = ` should render StampIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/StarIcon/__snapshots__/StarIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/StarIcon/__snapshots__/StarIcon.native.test.tsx.snap index 367f9eb68d5..37505f92f69 100644 --- a/packages/blade/src/components/Icons/StarIcon/__snapshots__/StarIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/StarIcon/__snapshots__/StarIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render StarIcon 1`] = ` should render StarIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render StarIcon 1`] = ` should render StarIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/StopCircleIcon/__snapshots__/StopCircleIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/StopCircleIcon/__snapshots__/StopCircleIcon.native.test.tsx.snap index 0b0c8b52ff6..05adf12b8c0 100644 --- a/packages/blade/src/components/Icons/StopCircleIcon/__snapshots__/StopCircleIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/StopCircleIcon/__snapshots__/StopCircleIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render StopCircleIcon 1`] = ` should render StopCircleIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render StopCircleIcon 1`] = ` should render StopCircleIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render StopCircleIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/SubscriptionsIcon/__snapshots__/SubscriptionsIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SubscriptionsIcon/__snapshots__/SubscriptionsIcon.native.test.tsx.snap index a30da1781a0..ba84fc25bd7 100644 --- a/packages/blade/src/components/Icons/SubscriptionsIcon/__snapshots__/SubscriptionsIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SubscriptionsIcon/__snapshots__/SubscriptionsIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SubscriptionsIcon 1`] = ` should render SubscriptionsIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SubscriptionsIcon 1`] = ` should render SubscriptionsIcon 1`] = ` d="M10.3766 4.97811C12.8324 4.43243 15.4017 5.16223 17.1817 6.91113C17.1884 6.91778 17.1953 6.92433 17.2023 6.93077L19.8153 9.29939H16.5833C16.0771 9.29939 15.6667 9.70243 15.6667 10.1996C15.6667 10.6968 16.0771 11.0998 16.5833 11.0998H22.0833C22.5896 11.0998 23 10.6968 23 10.1996V4.79841C23 4.30125 22.5896 3.89822 22.0833 3.89822C21.5771 3.89822 21.1667 4.30125 21.1667 4.79841V8.0744L18.4679 5.62814C16.2433 3.4494 13.037 2.54107 9.97198 3.22211C6.90215 3.90422 4.40333 6.08529 3.35336 8.99911C3.18447 9.46779 3.43445 9.98219 3.91172 10.148C4.38898 10.3139 4.91278 10.0684 5.08167 9.59971C5.92165 7.26866 7.9207 5.5238 10.3766 4.97811Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render SubscriptionsIcon 1`] = ` d="M2.83333 15.9256V19.2015C2.83333 19.6987 2.42293 20.1017 1.91667 20.1017C1.41041 20.1017 1 19.6987 1 19.2015V13.8004C1 13.3032 1.41041 12.9002 1.91667 12.9002H7.41667C7.92293 12.9002 8.33333 13.3032 8.33333 13.8004C8.33333 14.2975 7.92293 14.7006 7.41667 14.7006H4.18472L6.79771 17.0692C6.8047 17.0757 6.81157 17.0822 6.81835 17.0889C8.59836 18.8378 11.1676 19.5676 13.6234 19.0219C16.0793 18.4762 18.0784 16.7313 18.9183 14.4003C19.0872 13.9316 19.611 13.6861 20.0883 13.852C20.5656 14.0178 20.8155 14.5322 20.6467 15.0009C19.5967 17.9147 17.0979 20.0958 14.028 20.7779C10.963 21.4589 7.75671 20.5506 5.5321 18.3719L2.83333 15.9256Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/SunIcon/__snapshots__/SunIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SunIcon/__snapshots__/SunIcon.native.test.tsx.snap index 5d55c3ac68c..406e88dca64 100644 --- a/packages/blade/src/components/Icons/SunIcon/__snapshots__/SunIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SunIcon/__snapshots__/SunIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SunIcon 1`] = ` should render SunIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SunIcon 1`] = ` should render SunIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -70,7 +70,7 @@ exports[` should render SunIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -82,7 +82,7 @@ exports[` should render SunIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -94,7 +94,7 @@ exports[` should render SunIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -106,7 +106,7 @@ exports[` should render SunIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -118,7 +118,7 @@ exports[` should render SunIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -130,7 +130,7 @@ exports[` should render SunIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -142,7 +142,7 @@ exports[` should render SunIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -154,7 +154,7 @@ exports[` should render SunIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -169,7 +169,7 @@ exports[` should render SunIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/SunriseIcon/__snapshots__/SunriseIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SunriseIcon/__snapshots__/SunriseIcon.native.test.tsx.snap index 3cecefacd08..abec8547ed4 100644 --- a/packages/blade/src/components/Icons/SunriseIcon/__snapshots__/SunriseIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SunriseIcon/__snapshots__/SunriseIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SunriseIcon 1`] = ` should render SunriseIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SunriseIcon 1`] = ` should render SunriseIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -70,7 +70,7 @@ exports[` should render SunriseIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -82,7 +82,7 @@ exports[` should render SunriseIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -94,7 +94,7 @@ exports[` should render SunriseIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -106,7 +106,7 @@ exports[` should render SunriseIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -118,7 +118,7 @@ exports[` should render SunriseIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -130,7 +130,7 @@ exports[` should render SunriseIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -142,7 +142,7 @@ exports[` should render SunriseIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -157,7 +157,7 @@ exports[` should render SunriseIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/SunsetIcon/__snapshots__/SunsetIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/SunsetIcon/__snapshots__/SunsetIcon.native.test.tsx.snap index a86c9d95dea..0fd634b69bf 100644 --- a/packages/blade/src/components/Icons/SunsetIcon/__snapshots__/SunsetIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/SunsetIcon/__snapshots__/SunsetIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render SunsetIcon 1`] = ` should render SunsetIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render SunsetIcon 1`] = ` should render SunsetIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render SunsetIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -79,7 +79,7 @@ exports[` should render SunsetIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -91,7 +91,7 @@ exports[` should render SunsetIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -103,7 +103,7 @@ exports[` should render SunsetIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -115,7 +115,7 @@ exports[` should render SunsetIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -127,7 +127,7 @@ exports[` should render SunsetIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -139,7 +139,7 @@ exports[` should render SunsetIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/TabletIcon/__snapshots__/TabletIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/TabletIcon/__snapshots__/TabletIcon.native.test.tsx.snap index 8a091bd1acd..84947571d6b 100644 --- a/packages/blade/src/components/Icons/TabletIcon/__snapshots__/TabletIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/TabletIcon/__snapshots__/TabletIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render TabletIcon 1`] = ` should render TabletIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render TabletIcon 1`] = ` should render TabletIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -65,7 +65,7 @@ exports[` should render TabletIcon 1`] = ` d="M13 18C13 18.5523 12.5523 19 12 19C11.4477 19 11 18.5523 11 18C11 17.4477 11.4477 17 12 17C12.5523 17 13 17.4477 13 18Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/TagIcon/__snapshots__/TagIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/TagIcon/__snapshots__/TagIcon.native.test.tsx.snap index 3caaa095912..0b839bbe70e 100644 --- a/packages/blade/src/components/Icons/TagIcon/__snapshots__/TagIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/TagIcon/__snapshots__/TagIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render TagIcon 1`] = ` should render TagIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render TagIcon 1`] = ` should render TagIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -65,7 +65,7 @@ exports[` should render TagIcon 1`] = ` d="M10 8.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/TargetIcon/__snapshots__/TargetIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/TargetIcon/__snapshots__/TargetIcon.native.test.tsx.snap index 4f8c7fc3b2b..941c13078aa 100644 --- a/packages/blade/src/components/Icons/TargetIcon/__snapshots__/TargetIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/TargetIcon/__snapshots__/TargetIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render TargetIcon 1`] = ` should render TargetIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render TargetIcon 1`] = ` should render TargetIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render TargetIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -79,7 +79,7 @@ exports[` should render TargetIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ThermometerIcon/__snapshots__/ThermometerIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ThermometerIcon/__snapshots__/ThermometerIcon.native.test.tsx.snap index 0db7b86cfe3..43a9dfe9963 100644 --- a/packages/blade/src/components/Icons/ThermometerIcon/__snapshots__/ThermometerIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ThermometerIcon/__snapshots__/ThermometerIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ThermometerIcon 1`] = ` should render ThermometerIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ThermometerIcon 1`] = ` should render ThermometerIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -73,7 +73,7 @@ exports[` should render ThermometerIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/ThumbsDownIcon/__snapshots__/ThumbsDownIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ThumbsDownIcon/__snapshots__/ThumbsDownIcon.native.test.tsx.snap index 276d4dbe261..3b733c99279 100644 --- a/packages/blade/src/components/Icons/ThumbsDownIcon/__snapshots__/ThumbsDownIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ThumbsDownIcon/__snapshots__/ThumbsDownIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ThumbsDownIcon 1`] = ` should render ThumbsDownIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ThumbsDownIcon 1`] = ` should render ThumbsDownIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ThumbsUpIcon/__snapshots__/ThumbsUpIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ThumbsUpIcon/__snapshots__/ThumbsUpIcon.native.test.tsx.snap index bd29ce44ac9..961ac34264c 100644 --- a/packages/blade/src/components/Icons/ThumbsUpIcon/__snapshots__/ThumbsUpIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ThumbsUpIcon/__snapshots__/ThumbsUpIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ThumbsUpIcon 1`] = ` should render ThumbsUpIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ThumbsUpIcon 1`] = ` should render ThumbsUpIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ToggleLeftIcon/__snapshots__/ToggleLeftIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ToggleLeftIcon/__snapshots__/ToggleLeftIcon.native.test.tsx.snap index 45e6c565f19..fb2ba639266 100644 --- a/packages/blade/src/components/Icons/ToggleLeftIcon/__snapshots__/ToggleLeftIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ToggleLeftIcon/__snapshots__/ToggleLeftIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ToggleLeftIcon 1`] = ` should render ToggleLeftIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ToggleLeftIcon 1`] = ` should render ToggleLeftIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render ToggleLeftIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ToggleRightIcon/__snapshots__/ToggleRightIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ToggleRightIcon/__snapshots__/ToggleRightIcon.native.test.tsx.snap index 501d27fd33d..f5f6fd2799b 100644 --- a/packages/blade/src/components/Icons/ToggleRightIcon/__snapshots__/ToggleRightIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ToggleRightIcon/__snapshots__/ToggleRightIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ToggleRightIcon 1`] = ` should render ToggleRightIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ToggleRightIcon 1`] = ` should render ToggleRightIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render ToggleRightIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/TransactionsIcon/__snapshots__/TransactionsIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/TransactionsIcon/__snapshots__/TransactionsIcon.native.test.tsx.snap index 8e0c0c73524..f45c976f8a9 100644 --- a/packages/blade/src/components/Icons/TransactionsIcon/__snapshots__/TransactionsIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/TransactionsIcon/__snapshots__/TransactionsIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render TransactionsIcon 1`] = ` should render TransactionsIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render TransactionsIcon 1`] = ` should render TransactionsIcon 1`] = ` d="M6.24 12.03a.878.878 0 0 1 .26.623.898.898 0 0 1-.249.627.85.85 0 0 1-.61.257.833.833 0 0 1-.606-.268L1.25 9.377a.869.869 0 0 1-.107-.134c-.014-.022-.024-.044-.036-.067a.853.853 0 0 1-.042-.084.843.843 0 0 1-.027-.087c-.007-.026-.017-.05-.022-.076a.91.91 0 0 1 0-.343c.005-.026.015-.05.022-.075a.812.812 0 0 1 .027-.087.91.91 0 0 1 .042-.085c.012-.022.022-.043.036-.066a.895.895 0 0 1 .107-.135l3.785-3.892a.84.84 0 0 1 .6-.246.84.84 0 0 1 .595.257.89.89 0 0 1 .01 1.228L3.91 7.883h9.715a.84.84 0 0 1 .602.256c.16.164.25.387.25.62 0 .232-.09.455-.25.62a.84.84 0 0 1-.602.256H3.909l2.332 2.395Zm16.617 3.674c.014-.022.024-.044.035-.067a.896.896 0 0 0 .043-.084.806.806 0 0 0 .027-.088c.007-.024.017-.049.022-.074a.912.912 0 0 0 0-.344c-.005-.026-.015-.05-.022-.075a.836.836 0 0 0-.027-.088.843.843 0 0 0-.043-.083c-.011-.023-.021-.044-.035-.067a.87.87 0 0 0-.107-.134l-3.785-3.893a.84.84 0 0 0-1.195.011.889.889 0 0 0-.25.612.89.89 0 0 0 .24.616l2.33 2.397h-9.715a.84.84 0 0 0-.602.257.889.889 0 0 0-.25.62c0 .232.09.455.25.62a.84.84 0 0 0 .602.256h9.716l-2.332 2.397a.877.877 0 0 0-.26.623.898.898 0 0 0 .25.627.85.85 0 0 0 .61.257.833.833 0 0 0 .605-.267l3.786-3.893a.894.894 0 0 0 .107-.134v-.002Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/TrashIcon/__snapshots__/TrashIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/TrashIcon/__snapshots__/TrashIcon.native.test.tsx.snap index 53451a29752..b6e966646fb 100644 --- a/packages/blade/src/components/Icons/TrashIcon/__snapshots__/TrashIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/TrashIcon/__snapshots__/TrashIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render TrashIcon 1`] = ` should render TrashIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render TrashIcon 1`] = ` should render TrashIcon 1`] = ` d="M10 10a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0v-6a1 1 0 0 1 1-1ZM15 11a1 1 0 1 0-2 0v6a1 1 0 1 0 2 0v-6Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render TrashIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/TrendingDownIcon/__snapshots__/TendingDownIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/TrendingDownIcon/__snapshots__/TendingDownIcon.native.test.tsx.snap index 7d6f5e50312..d3209ceeff2 100644 --- a/packages/blade/src/components/Icons/TrendingDownIcon/__snapshots__/TendingDownIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/TrendingDownIcon/__snapshots__/TendingDownIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render TrendingDownIcon 1`] = ` should render TrendingDownIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render TrendingDownIcon 1`] = ` should render TrendingDownIcon 1`] = ` d="M1.70711 5.29289C1.31658 4.90237 0.683417 4.90237 0.292893 5.29289C-0.0976311 5.68342 -0.0976311 6.31658 0.292893 6.70711L7.79289 14.2071C8.18342 14.5976 8.81658 14.5976 9.20711 14.2071L13.5 9.91421L20.5858 17H17C16.4477 17 16 17.4477 16 18C16 18.5523 16.4477 19 17 19H22.9993C23.0003 19 23.002 19 23.003 19C23.1375 18.9996 23.2657 18.9727 23.3828 18.9241C23.5007 18.8753 23.6112 18.803 23.7071 18.7071C23.8902 18.524 23.9874 18.2877 23.9989 18.048C23.9996 18.032 24 18.016 24 18C24 17.9997 24 18.0003 24 18V12C24 11.4477 23.5523 11 23 11C22.4477 11 22 11.4477 22 12V15.5858L14.2071 7.79289C13.8166 7.40237 13.1834 7.40237 12.7929 7.79289L8.5 12.0858L1.70711 5.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -70,7 +70,7 @@ exports[` should render TrendingDownIcon 1`] = ` fill={4294967295} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/TrendingDownIcon/__snapshots__/TrendingDownIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/TrendingDownIcon/__snapshots__/TrendingDownIcon.native.test.tsx.snap index 7d6f5e50312..d3209ceeff2 100644 --- a/packages/blade/src/components/Icons/TrendingDownIcon/__snapshots__/TrendingDownIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/TrendingDownIcon/__snapshots__/TrendingDownIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render TrendingDownIcon 1`] = ` should render TrendingDownIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render TrendingDownIcon 1`] = ` should render TrendingDownIcon 1`] = ` d="M1.70711 5.29289C1.31658 4.90237 0.683417 4.90237 0.292893 5.29289C-0.0976311 5.68342 -0.0976311 6.31658 0.292893 6.70711L7.79289 14.2071C8.18342 14.5976 8.81658 14.5976 9.20711 14.2071L13.5 9.91421L20.5858 17H17C16.4477 17 16 17.4477 16 18C16 18.5523 16.4477 19 17 19H22.9993C23.0003 19 23.002 19 23.003 19C23.1375 18.9996 23.2657 18.9727 23.3828 18.9241C23.5007 18.8753 23.6112 18.803 23.7071 18.7071C23.8902 18.524 23.9874 18.2877 23.9989 18.048C23.9996 18.032 24 18.016 24 18C24 17.9997 24 18.0003 24 18V12C24 11.4477 23.5523 11 23 11C22.4477 11 22 11.4477 22 12V15.5858L14.2071 7.79289C13.8166 7.40237 13.1834 7.40237 12.7929 7.79289L8.5 12.0858L1.70711 5.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -70,7 +70,7 @@ exports[` should render TrendingDownIcon 1`] = ` fill={4294967295} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/TrendingUpIcon/__snapshots__/TendingUpIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/TrendingUpIcon/__snapshots__/TendingUpIcon.native.test.tsx.snap index 6320137b6b3..b14a7f54020 100644 --- a/packages/blade/src/components/Icons/TrendingUpIcon/__snapshots__/TendingUpIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/TrendingUpIcon/__snapshots__/TendingUpIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render TrendingUpIcon 1`] = ` should render TrendingUpIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render TrendingUpIcon 1`] = ` should render TrendingUpIcon 1`] = ` d="M17 5C16.4477 5 16 5.44772 16 6C16 6.55228 16.4477 7 17 7H20.5858L13.5 14.0858L9.20711 9.79289C8.81658 9.40237 8.18342 9.40237 7.79289 9.79289L0.292893 17.2929C-0.0976311 17.6834 -0.0976311 18.3166 0.292893 18.7071C0.683417 19.0976 1.31658 19.0976 1.70711 18.7071L8.5 11.9142L12.7929 16.2071C13.1834 16.5976 13.8166 16.5976 14.2071 16.2071L22 8.41421V12C22 12.5523 22.4477 13 23 13C23.5523 13 24 12.5523 24 12V6C24 5.44772 23.5523 5 23 5H17Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -70,7 +70,7 @@ exports[` should render TrendingUpIcon 1`] = ` fill={4294967295} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/TrendingUpIcon/__snapshots__/TrendingUpIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/TrendingUpIcon/__snapshots__/TrendingUpIcon.native.test.tsx.snap index 6320137b6b3..b14a7f54020 100644 --- a/packages/blade/src/components/Icons/TrendingUpIcon/__snapshots__/TrendingUpIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/TrendingUpIcon/__snapshots__/TrendingUpIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render TrendingUpIcon 1`] = ` should render TrendingUpIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render TrendingUpIcon 1`] = ` should render TrendingUpIcon 1`] = ` d="M17 5C16.4477 5 16 5.44772 16 6C16 6.55228 16.4477 7 17 7H20.5858L13.5 14.0858L9.20711 9.79289C8.81658 9.40237 8.18342 9.40237 7.79289 9.79289L0.292893 17.2929C-0.0976311 17.6834 -0.0976311 18.3166 0.292893 18.7071C0.683417 19.0976 1.31658 19.0976 1.70711 18.7071L8.5 11.9142L12.7929 16.2071C13.1834 16.5976 13.8166 16.5976 14.2071 16.2071L22 8.41421V12C22 12.5523 22.4477 13 23 13C23.5523 13 24 12.5523 24 12V6C24 5.44772 23.5523 5 23 5H17Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -70,7 +70,7 @@ exports[` should render TrendingUpIcon 1`] = ` fill={4294967295} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/TriangleIcon/__snapshots__/TriangleIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/TriangleIcon/__snapshots__/TriangleIcon.native.test.tsx.snap index 63c620ac5b6..a7d71675748 100644 --- a/packages/blade/src/components/Icons/TriangleIcon/__snapshots__/TriangleIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/TriangleIcon/__snapshots__/TriangleIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render TriangleIcon 1`] = ` should render TriangleIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render TriangleIcon 1`] = ` should render TriangleIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/TvIcon/__snapshots__/TvIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/TvIcon/__snapshots__/TvIcon.native.test.tsx.snap index c206469aa11..3ec0956fe2c 100644 --- a/packages/blade/src/components/Icons/TvIcon/__snapshots__/TvIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/TvIcon/__snapshots__/TvIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render TvIcon 1`] = ` should render TvIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render TvIcon 1`] = ` should render TvIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/TwitterIcon/__snapshots__/TwitterIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/TwitterIcon/__snapshots__/TwitterIcon.native.test.tsx.snap index 9f30d765a14..2da7e93f0e3 100644 --- a/packages/blade/src/components/Icons/TwitterIcon/__snapshots__/TwitterIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/TwitterIcon/__snapshots__/TwitterIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render TwitterIcon 1`] = ` should render TwitterIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render TwitterIcon 1`] = ` should render TwitterIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -73,7 +73,7 @@ exports[` should render TwitterIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/TypeIcon/__snapshots__/TypeIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/TypeIcon/__snapshots__/TypeIcon.native.test.tsx.snap index 9e9e9215f27..17c06e77e60 100644 --- a/packages/blade/src/components/Icons/TypeIcon/__snapshots__/TypeIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/TypeIcon/__snapshots__/TypeIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render TypeIcon 1`] = ` should render TypeIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render TypeIcon 1`] = ` should render TypeIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render TypeIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -79,7 +79,7 @@ exports[` should render TypeIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/UmbrellaIcon/__snapshots__/UmbrellaIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/UmbrellaIcon/__snapshots__/UmbrellaIcon.native.test.tsx.snap index d6d1b845a7d..fc95a0490f7 100644 --- a/packages/blade/src/components/Icons/UmbrellaIcon/__snapshots__/UmbrellaIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/UmbrellaIcon/__snapshots__/UmbrellaIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render UmbrellaIcon 1`] = ` should render UmbrellaIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render UmbrellaIcon 1`] = ` should render UmbrellaIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -73,7 +73,7 @@ exports[` should render UmbrellaIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/UnderlineIcon/__snapshots__/UnderlineIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/UnderlineIcon/__snapshots__/UnderlineIcon.native.test.tsx.snap index e247f603148..7df675fc048 100644 --- a/packages/blade/src/components/Icons/UnderlineIcon/__snapshots__/UnderlineIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/UnderlineIcon/__snapshots__/UnderlineIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render UnderlineIcon 1`] = ` should render UnderlineIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render UnderlineIcon 1`] = ` should render UnderlineIcon 1`] = ` d="M7 2C7 1.44772 6.55228 1 6 1C5.44772 1 5 1.44772 5 2V9C5 12.866 8.13401 16 12 16C15.866 16 19 12.866 19 9V2C19 1.44772 18.5523 1 18 1C17.4477 1 17 1.44772 17 2V9C17 11.7614 14.7614 14 12 14C9.23858 14 7 11.7614 7 9V2Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render UnderlineIcon 1`] = ` d="M4 19C3.44772 19 3 19.4477 3 20C3 20.5523 3.44772 21 4 21H20C20.5523 21 21 20.5523 21 20C21 19.4477 20.5523 19 20 19H4Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/UnlockIcon/__snapshots__/UnlockIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/UnlockIcon/__snapshots__/UnlockIcon.native.test.tsx.snap index d6671a85fd6..a58e31a2495 100644 --- a/packages/blade/src/components/Icons/UnlockIcon/__snapshots__/UnlockIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/UnlockIcon/__snapshots__/UnlockIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render UnlockIcon 1`] = ` should render UnlockIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render UnlockIcon 1`] = ` should render UnlockIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/UploadCloudIcon/__snapshots__/UploadCloudIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/UploadCloudIcon/__snapshots__/UploadCloudIcon.native.test.tsx.snap index 28f593968a6..33200275e3d 100644 --- a/packages/blade/src/components/Icons/UploadCloudIcon/__snapshots__/UploadCloudIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/UploadCloudIcon/__snapshots__/UploadCloudIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render UploadCloudIcon 1`] = ` should render UploadCloudIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render UploadCloudIcon 1`] = ` should render UploadCloudIcon 1`] = ` d="M1.01328 6.84348C2.73489 3.53956 6.31417 1.63791 10.0157 2.06055C13.4557 2.45333 16.3404 4.77817 17.4793 7.99999H18C20.7422 8.0018 23.1349 9.86253 23.8113 12.52C24.4877 15.1775 23.2764 17.9554 20.8687 19.268C20.3838 19.5323 19.7764 19.3536 19.512 18.8687C19.2477 18.3837 19.4265 17.7763 19.9114 17.512C21.5165 16.6369 22.3241 14.785 21.8731 13.0133C21.4222 11.2417 19.8275 10.0012 17.9994 9.99999H16.74C16.2841 9.99999 15.886 9.69167 15.7719 9.2503C15.0466 6.44488 12.6677 4.37635 9.78879 4.04764C6.90984 3.71892 4.12596 5.19798 2.78693 7.76769C1.4479 10.3374 1.83056 13.4665 3.74936 15.6378C4.11508 16.0516 4.07607 16.6836 3.66222 17.0493C3.24838 17.415 2.61641 17.376 2.2507 16.9622C-0.216341 14.1705 -0.708325 10.1474 1.01328 6.84348Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -65,7 +65,7 @@ exports[` should render UploadCloudIcon 1`] = ` d="M12.7071 11.2929C12.3166 10.9024 11.6834 10.9024 11.2929 11.2929L7.29289 15.2929C6.90237 15.6834 6.90237 16.3166 7.29289 16.7071C7.68342 17.0976 8.31658 17.0976 8.70711 16.7071L11 14.4142V21C11 21.5523 11.4477 22 12 22C12.5523 22 13 21.5523 13 21V14.4142L15.2929 16.7071C15.6834 17.0976 16.3166 17.0976 16.7071 16.7071C17.0976 16.3166 17.0976 15.6834 16.7071 15.2929L12.7071 11.2929Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -79,7 +79,7 @@ exports[` should render UploadCloudIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/UploadIcon/__snapshots__/UploadIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/UploadIcon/__snapshots__/UploadIcon.native.test.tsx.snap index 86fd97d72fa..dd540d8cbb1 100644 --- a/packages/blade/src/components/Icons/UploadIcon/__snapshots__/UploadIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/UploadIcon/__snapshots__/UploadIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render UploadIcon 1`] = ` should render UploadIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render UploadIcon 1`] = ` should render UploadIcon 1`] = ` d="M11.2929 1.29289C11.6834 0.902369 12.3166 0.902369 12.7071 1.29289L16.7071 5.29289C17.0976 5.68342 17.0976 6.31658 16.7071 6.70711C16.3166 7.09763 15.6834 7.09763 15.2929 6.70711L13 4.41421V16C13 16.5523 12.5523 17 12 17C11.4477 17 11 16.5523 11 16V4.41421L8.70711 6.70711C8.31658 7.09763 7.68342 7.09763 7.29289 6.70711C6.90237 6.31658 6.90237 5.68342 7.29289 5.29289L11.2929 1.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render UploadIcon 1`] = ` d="M3 16C3.55228 16 4 16.4477 4 17V20C4 20.5523 4.44772 21 5 21H19C19.5523 21 20 20.5523 20 20V17C20 16.4477 20.4477 16 21 16C21.5523 16 22 16.4477 22 17V20C22 21.6569 20.6569 23 19 23H5C3.34315 23 2 21.6569 2 20V17C2 16.4477 2.44772 16 3 16Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/UserCheckIcon/__snapshots__/UserCheckIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/UserCheckIcon/__snapshots__/UserCheckIcon.native.test.tsx.snap index 26ce667a2d3..dd06c7603b9 100644 --- a/packages/blade/src/components/Icons/UserCheckIcon/__snapshots__/UserCheckIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/UserCheckIcon/__snapshots__/UserCheckIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render UserCheckIcon 1`] = ` should render UserCheckIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render UserCheckIcon 1`] = ` should render UserCheckIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -65,7 +65,7 @@ exports[` should render UserCheckIcon 1`] = ` d="M0 19C0 16.2386 2.23858 14 5 14H12C14.7614 14 17 16.2386 17 19V21C17 21.5523 16.5523 22 16 22C15.4477 22 15 21.5523 15 21V19C15 17.3431 13.6569 16 12 16H5C3.34315 16 2 17.3431 2 19V21C2 21.5523 1.55228 22 1 22C0.447715 22 0 21.5523 0 21V19Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -74,7 +74,7 @@ exports[` should render UserCheckIcon 1`] = ` d="M23.7071 9.70711C24.0976 9.31658 24.0976 8.68342 23.7071 8.29289C23.3166 7.90237 22.6834 7.90237 22.2929 8.29289L19 11.5858L17.7071 10.2929C17.3166 9.90237 16.6834 9.90237 16.2929 10.2929C15.9024 10.6834 15.9024 11.3166 16.2929 11.7071L18.2929 13.7071C18.6834 14.0976 19.3166 14.0976 19.7071 13.7071L23.7071 9.70711Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/UserIcon/__snapshots__/UserIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/UserIcon/__snapshots__/UserIcon.native.test.tsx.snap index 23534981292..ad6510cbb48 100644 --- a/packages/blade/src/components/Icons/UserIcon/__snapshots__/UserIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/UserIcon/__snapshots__/UserIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render UserIcon 1`] = ` should render UserIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render UserIcon 1`] = ` should render UserIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -65,7 +65,7 @@ exports[` should render UserIcon 1`] = ` d="M8 14a5 5 0 0 0-5 5v2a1 1 0 1 0 2 0v-2a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v2a1 1 0 1 0 2 0v-2a5 5 0 0 0-5-5H8Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/UserMinusIcon/__snapshots__/UserMinusIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/UserMinusIcon/__snapshots__/UserMinusIcon.native.test.tsx.snap index 7c8f52eb92c..23e67823a8c 100644 --- a/packages/blade/src/components/Icons/UserMinusIcon/__snapshots__/UserMinusIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/UserMinusIcon/__snapshots__/UserMinusIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render UserMinusIcon 1`] = ` should render UserMinusIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render UserMinusIcon 1`] = ` should render UserMinusIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -65,7 +65,7 @@ exports[` should render UserMinusIcon 1`] = ` d="M0 19C0 16.2386 2.23858 14 5 14H12C14.7614 14 17 16.2386 17 19V21C17 21.5523 16.5523 22 16 22C15.4477 22 15 21.5523 15 21V19C15 17.3431 13.6569 16 12 16H5C3.34315 16 2 17.3431 2 19V21C2 21.5523 1.55228 22 1 22C0.447715 22 0 21.5523 0 21V19Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -74,7 +74,7 @@ exports[` should render UserMinusIcon 1`] = ` d="M17 10C16.4477 10 16 10.4477 16 11C16 11.5523 16.4477 12 17 12H23C23.5523 12 24 11.5523 24 11C24 10.4477 23.5523 10 23 10H17Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/UserPlusIcon/__snapshots__/UserPlusIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/UserPlusIcon/__snapshots__/UserPlusIcon.native.test.tsx.snap index ee1c955cc4c..8c10a97de5a 100644 --- a/packages/blade/src/components/Icons/UserPlusIcon/__snapshots__/UserPlusIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/UserPlusIcon/__snapshots__/UserPlusIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render UserPlusIcon 1`] = ` should render UserPlusIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render UserPlusIcon 1`] = ` should render UserPlusIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -65,7 +65,7 @@ exports[` should render UserPlusIcon 1`] = ` d="M5 14C2.23858 14 0 16.2386 0 19V21C0 21.5523 0.447715 22 1 22C1.55228 22 2 21.5523 2 21V19C2 17.3431 3.34315 16 5 16H12C13.6569 16 15 17.3431 15 19V21C15 21.5523 15.4477 22 16 22C16.5523 22 17 21.5523 17 21V19C17 16.2386 14.7614 14 12 14H5Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -74,7 +74,7 @@ exports[` should render UserPlusIcon 1`] = ` d="M20 7C20.5523 7 21 7.44772 21 8V10H23C23.5523 10 24 10.4477 24 11C24 11.5523 23.5523 12 23 12H21V14C21 14.5523 20.5523 15 20 15C19.4477 15 19 14.5523 19 14V12H17C16.4477 12 16 11.5523 16 11C16 10.4477 16.4477 10 17 10H19V8C19 7.44772 19.4477 7 20 7Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/UserXIcon/__snapshots__/UserXIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/UserXIcon/__snapshots__/UserXIcon.native.test.tsx.snap index cdb8ad8cee2..7b1d281d26c 100644 --- a/packages/blade/src/components/Icons/UserXIcon/__snapshots__/UserXIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/UserXIcon/__snapshots__/UserXIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render UserXIcon 1`] = ` should render UserXIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render UserXIcon 1`] = ` should render UserXIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -65,7 +65,7 @@ exports[` should render UserXIcon 1`] = ` d="M5 14C2.23858 14 0 16.2386 0 19V21C0 21.5523 0.447715 22 1 22C1.55228 22 2 21.5523 2 21V19C2 17.3431 3.34315 16 5 16H12C13.6569 16 15 17.3431 15 19V21C15 21.5523 15.4477 22 16 22C16.5523 22 17 21.5523 17 21V19C17 16.2386 14.7614 14 12 14H5Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -74,7 +74,7 @@ exports[` should render UserXIcon 1`] = ` d="M17.2929 7.29289C17.6834 6.90237 18.3166 6.90237 18.7071 7.29289L20.5 9.08579L22.2929 7.29289C22.6834 6.90237 23.3166 6.90237 23.7071 7.29289C24.0976 7.68342 24.0976 8.31658 23.7071 8.70711L21.9142 10.5L23.7071 12.2929C24.0976 12.6834 24.0976 13.3166 23.7071 13.7071C23.3166 14.0976 22.6834 14.0976 22.2929 13.7071L20.5 11.9142L18.7071 13.7071C18.3166 14.0976 17.6834 14.0976 17.2929 13.7071C16.9024 13.3166 16.9024 12.6834 17.2929 12.2929L19.0858 10.5L17.2929 8.70711C16.9024 8.31658 16.9024 7.68342 17.2929 7.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/UsersIcon/__snapshots__/UsersIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/UsersIcon/__snapshots__/UsersIcon.native.test.tsx.snap index af3307f872c..caeec1431fa 100644 --- a/packages/blade/src/components/Icons/UsersIcon/__snapshots__/UsersIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/UsersIcon/__snapshots__/UsersIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render UsersIcon 1`] = ` should render UsersIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render UsersIcon 1`] = ` should render UsersIcon 1`] = ` d="M9 0C6.23858 0 4 2.23858 4 5C4 7.76142 6.23858 10 9 10C11.7614 10 14 7.76142 14 5C14 2.23858 11.7614 0 9 0ZM6 5C6 3.34315 7.34315 2 9 2C10.6569 2 12 3.34315 12 5C12 6.65685 10.6569 8 9 8C7.34315 8 6 6.65685 6 5Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render UsersIcon 1`] = ` d="M5 12C2.23858 12 0 14.2386 0 17V19C0 19.5523 0.447715 20 1 20C1.55228 20 2 19.5523 2 19V17C2 15.3431 3.34315 14 5 14H13C14.6569 14 16 15.3431 16 17V19C16 19.5523 16.4477 20 17 20C17.5523 20 18 19.5523 18 19V17C18 14.2386 15.7614 12 13 12H5Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -71,7 +71,7 @@ exports[` should render UsersIcon 1`] = ` d="M19.0318 12.88C19.1698 12.3453 19.7153 12.0237 20.25 12.1618C22.4562 12.7314 23.9983 14.7207 24 16.9993V19C24 19.5523 23.5523 20 23 20C22.4477 20 22 19.5523 22 19V17.0007C21.9988 15.6337 21.0737 14.44 19.75 14.0982C19.2153 13.9602 18.8937 13.4148 19.0318 12.88Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -80,7 +80,7 @@ exports[` should render UsersIcon 1`] = ` d="M16.248 0.161251C15.713 0.0242632 15.1682 0.346936 15.0312 0.881962C14.8943 1.41699 15.2169 1.96176 15.752 2.09875C17.0794 2.43863 18.0078 3.63474 18.0078 5.005C18.0078 6.37526 17.0794 7.57137 15.752 7.91125C15.2169 8.04824 14.8943 8.59301 15.0312 9.12804C15.1682 9.66307 15.713 9.98574 16.248 9.84875C18.4604 9.28229 20.0078 7.28876 20.0078 5.005C20.0078 2.72124 18.4604 0.727714 16.248 0.161251Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/VideoIcon/__snapshots__/VideoIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/VideoIcon/__snapshots__/VideoIcon.native.test.tsx.snap index 4ed6a4cfa19..0cb7a893b02 100644 --- a/packages/blade/src/components/Icons/VideoIcon/__snapshots__/VideoIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/VideoIcon/__snapshots__/VideoIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render VideoIcon 1`] = ` should render VideoIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render VideoIcon 1`] = ` should render VideoIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/VideoOffIcon/__snapshots__/VideoOffIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/VideoOffIcon/__snapshots__/VideoOffIcon.native.test.tsx.snap index 9eac9d63cdf..e1bc9eacbaf 100644 --- a/packages/blade/src/components/Icons/VideoOffIcon/__snapshots__/VideoOffIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/VideoOffIcon/__snapshots__/VideoOffIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render VideoOffIcon 1`] = ` should render VideoOffIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render VideoOffIcon 1`] = ` should render VideoOffIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -68,7 +68,7 @@ exports[` should render VideoOffIcon 1`] = ` d="M14 4H10.66C10.1077 4 9.66 4.44772 9.66 5C9.66 5.55228 10.1077 6 10.66 6H14C14.5523 6 15 6.44772 15 7V10.34C15 10.6052 15.1054 10.8596 15.2929 11.0471L16.2929 12.0471C16.6402 12.3944 17.1882 12.4381 17.5861 12.1503L22 8.95752V17C22 17.5523 22.4477 18 23 18C23.5523 18 24 17.5523 24 17V7C24 6.62434 23.7895 6.28037 23.4549 6.10947C23.1204 5.93857 22.7183 5.96958 22.4139 6.18975L17.1045 10.0303L17 9.92579V7C17 5.34315 15.6569 4 14 4Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -82,7 +82,7 @@ exports[` should render VideoOffIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/VoicemailIcon/__snapshots__/VoicemailIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/VoicemailIcon/__snapshots__/VoicemailIcon.native.test.tsx.snap index 49b75bb2355..9a9b94b0de6 100644 --- a/packages/blade/src/components/Icons/VoicemailIcon/__snapshots__/VoicemailIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/VoicemailIcon/__snapshots__/VoicemailIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render VoicemailIcon 1`] = ` should render VoicemailIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render VoicemailIcon 1`] = ` should render VoicemailIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/VolumeHighIcon/__snapshots__/VolumeHighIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/VolumeHighIcon/__snapshots__/VolumeHighIcon.native.test.tsx.snap index 2944c61ee76..b646dad2aa8 100644 --- a/packages/blade/src/components/Icons/VolumeHighIcon/__snapshots__/VolumeHighIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/VolumeHighIcon/__snapshots__/VolumeHighIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render VolumeHighIcon 1`] = ` should render VolumeHighIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render VolumeHighIcon 1`] = ` should render VolumeHighIcon 1`] = ` d="M19.7773 4.22318C19.3868 3.83259 18.7536 3.8325 18.363 4.22296C17.9725 4.61343 17.9724 5.24659 18.3628 5.63718C21.8763 9.15167 21.8763 14.8487 18.3628 18.3632C17.9724 18.7538 17.9725 19.3869 18.363 19.7774C18.7536 20.1679 19.3868 20.1678 19.7773 19.7772C24.0715 15.4817 24.0715 8.51867 19.7773 4.22318Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -62,7 +62,7 @@ exports[` should render VolumeHighIcon 1`] = ` d="M16.2473 7.75318C15.8568 7.36259 15.2236 7.3625 14.833 7.75296C14.4425 8.14343 14.4424 8.77659 14.8328 9.16718C16.3944 10.7292 16.3944 13.2612 14.8328 14.8232C14.4424 15.2138 14.4425 15.8469 14.833 16.2374C15.2236 16.6279 15.8568 16.6278 16.2473 16.2372C18.5895 13.8942 18.5895 10.0962 16.2473 7.75318Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -73,7 +73,7 @@ exports[` should render VolumeHighIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/VolumeIcon/__snapshots__/VolumeIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/VolumeIcon/__snapshots__/VolumeIcon.native.test.tsx.snap index 33a2406cf20..3d401d72cde 100644 --- a/packages/blade/src/components/Icons/VolumeIcon/__snapshots__/VolumeIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/VolumeIcon/__snapshots__/VolumeIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render VolumeIcon 1`] = ` should render VolumeIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render VolumeIcon 1`] = ` should render VolumeIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/VolumeLowIcon/__snapshots__/VolumeLowIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/VolumeLowIcon/__snapshots__/VolumeLowIcon.native.test.tsx.snap index 5e420584be3..c14a43b7710 100644 --- a/packages/blade/src/components/Icons/VolumeLowIcon/__snapshots__/VolumeLowIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/VolumeLowIcon/__snapshots__/VolumeLowIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render VolumeLowIcon 1`] = ` should render VolumeLowIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render VolumeLowIcon 1`] = ` should render VolumeLowIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -67,7 +67,7 @@ exports[` should render VolumeLowIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/VolumeMuteIcon/__snapshots__/VolumeMuteIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/VolumeMuteIcon/__snapshots__/VolumeMuteIcon.native.test.tsx.snap index 05fa2803c14..fb165d807ca 100644 --- a/packages/blade/src/components/Icons/VolumeMuteIcon/__snapshots__/VolumeMuteIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/VolumeMuteIcon/__snapshots__/VolumeMuteIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render VolumeMuteIcon 1`] = ` should render VolumeMuteIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render VolumeMuteIcon 1`] = ` should render VolumeMuteIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -65,7 +65,7 @@ exports[` should render VolumeMuteIcon 1`] = ` d="M22.7071 8.29289C23.0976 8.68342 23.0976 9.31658 22.7071 9.70711L20.4142 12L22.7071 14.2929C23.0976 14.6834 23.0976 15.3166 22.7071 15.7071C22.3166 16.0976 21.6834 16.0976 21.2929 15.7071L19 13.4142L16.7071 15.7071C16.3166 16.0976 15.6834 16.0976 15.2929 15.7071C14.9024 15.3166 14.9024 14.6834 15.2929 14.2929L17.5858 12L15.2929 9.70711C14.9024 9.31658 14.9024 8.68342 15.2929 8.29289C15.6834 7.90237 16.3166 7.90237 16.7071 8.29289L19 10.5858L21.2929 8.29289C21.6834 7.90237 22.3166 7.90237 22.7071 8.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/WatchIcon/__snapshots__/WatchIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/WatchIcon/__snapshots__/WatchIcon.native.test.tsx.snap index 65d675f3f2c..f68f5c59da7 100644 --- a/packages/blade/src/components/Icons/WatchIcon/__snapshots__/WatchIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/WatchIcon/__snapshots__/WatchIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render WatchIcon 1`] = ` should render WatchIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render WatchIcon 1`] = ` should render WatchIcon 1`] = ` d="M13 9C13 8.44771 12.5523 8 12 8C11.4477 8 11 8.44771 11 9V12C11 12.2652 11.1054 12.5196 11.2929 12.7071L12.7929 14.2071C13.1834 14.5976 13.8166 14.5976 14.2071 14.2071C14.5976 13.8166 14.5976 13.1834 14.2071 12.7929L13 11.5858V9Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -67,7 +67,7 @@ exports[` should render WatchIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -82,7 +82,7 @@ exports[` should render WatchIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/WifiIcon/__snapshots__/WifiIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/WifiIcon/__snapshots__/WifiIcon.native.test.tsx.snap index 73d5216cb30..8d77016dd91 100644 --- a/packages/blade/src/components/Icons/WifiIcon/__snapshots__/WifiIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/WifiIcon/__snapshots__/WifiIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render WifiIcon 1`] = ` should render WifiIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render WifiIcon 1`] = ` should render WifiIcon 1`] = ` d="M1.66126 10.7475C7.32983 5.75083 15.8302 5.75083 21.4988 10.7475C21.9131 11.1127 22.545 11.0729 22.9102 10.6586C23.2754 10.2443 23.2356 9.61238 22.8213 9.24718C16.3969 3.58427 6.76314 3.58427 0.338762 9.24718C-0.0755428 9.61238 -0.115352 10.2443 0.249847 10.6586C0.615045 11.0729 1.24696 11.1127 1.66126 10.7475Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -65,7 +65,7 @@ exports[` should render WifiIcon 1`] = ` d="M5.2201 14.3158C8.92791 11.2274 14.3123 11.2274 18.0201 14.3158C18.4445 14.6692 19.075 14.6117 19.4285 14.1874C19.7819 13.763 19.7245 13.1325 19.3001 12.779C14.8507 9.07301 8.38948 9.07301 3.9401 12.779C3.51574 13.1325 3.45827 13.763 3.81173 14.1874C4.16519 14.6117 4.79574 14.6692 5.2201 14.3158Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -74,7 +74,7 @@ exports[` should render WifiIcon 1`] = ` d="M14.4809 17.9225C12.7469 16.6905 10.4233 16.6905 8.68923 17.9225C8.239 18.2424 7.61472 18.1367 7.29486 17.6864C6.97499 17.2362 7.08067 16.6119 7.5309 16.2921C9.95853 14.5674 13.2116 14.5674 15.6392 16.2921C16.0895 16.6119 16.1951 17.2362 15.8753 17.6864C15.5554 18.1367 14.9311 18.2424 14.4809 17.9225Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -83,7 +83,7 @@ exports[` should render WifiIcon 1`] = ` d="M12 22C12.5523 22 13 21.5523 13 21C13 20.4477 12.5523 20 12 20C11.4477 20 11 20.4477 11 21C11 21.5523 11.4477 22 12 22Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -97,7 +97,7 @@ exports[` should render WifiIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/WifiOffIcon/__snapshots__/WifiOffIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/WifiOffIcon/__snapshots__/WifiOffIcon.native.test.tsx.snap index 7e6c535f064..20c15ca43d1 100644 --- a/packages/blade/src/components/Icons/WifiOffIcon/__snapshots__/WifiOffIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/WifiOffIcon/__snapshots__/WifiOffIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render WifiOffIcon 1`] = ` should render WifiOffIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render WifiOffIcon 1`] = ` should render WifiOffIcon 1`] = ` d="M0.292893 0.292893C0.683417 -0.0976311 1.31658 -0.0976311 1.70711 0.292893L6.81081 5.3966C6.82218 5.40743 6.8333 5.41856 6.84418 5.42997L10.7878 9.37359C10.8507 9.42296 10.9077 9.47987 10.9575 9.54326L23.7071 22.2929C24.0976 22.6834 24.0976 23.3166 23.7071 23.7071C23.3166 24.0976 22.6834 24.0976 22.2929 23.7071L15.6763 17.0905C15.4156 17.1427 15.1347 17.0913 14.9008 16.9252C13.1668 15.6932 10.8432 15.6932 9.10915 16.9252C8.65893 17.245 8.03464 17.1394 7.71478 16.6891C7.39491 16.2389 7.50059 15.6146 7.95082 15.2948C9.33815 14.3091 10.9951 13.8868 12.6134 14.0277L9.83187 11.2461C8.29273 11.593 6.85566 12.3019 5.64146 13.3171C5.21776 13.6714 4.5871 13.6151 4.23285 13.1914C3.87859 12.7677 3.93489 12.137 4.35859 11.7828C5.50171 10.827 6.80929 10.0972 8.21145 9.62566L5.88764 7.30186C4.50326 7.91882 3.21984 8.74381 2.08234 9.74927C1.66854 10.115 1.03657 10.0761 0.670802 9.6623C0.305033 9.2485 0.343971 8.61653 0.757772 8.25076C1.85745 7.27873 3.07738 6.45542 4.38598 5.80019L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683417 0.292893 0.292893Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -65,7 +65,7 @@ exports[` should render WifiOffIcon 1`] = ` d="M13 20C13 20.5523 12.5523 21 12 21C11.4477 21 11 20.5523 11 20C11 19.4477 11.4477 19 12 19C12.5523 19 13 19.4477 13 20Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -74,7 +74,7 @@ exports[` should render WifiOffIcon 1`] = ` d="M17.1585 10.1614C16.6622 9.91913 16.0635 10.1251 15.8213 10.6214C15.579 11.1178 15.785 11.7165 16.2814 11.9587C17.0256 12.3219 17.7215 12.7767 18.353 13.3125C18.7741 13.6699 19.4051 13.6182 19.7624 13.197C20.1198 12.7759 20.0681 12.1449 19.647 11.7876C18.8885 11.1439 18.0525 10.5976 17.1585 10.1614Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -83,7 +83,7 @@ exports[` should render WifiOffIcon 1`] = ` d="M10.7903 6.0468C14.8485 5.71979 18.8654 7.05648 21.9185 9.74992C22.3326 10.1153 22.9645 10.0757 23.3299 9.66158C23.6953 9.24743 23.6557 8.6155 23.2416 8.25013C19.7814 5.19756 15.229 3.68266 10.6297 4.05326C10.0792 4.09762 9.66889 4.57984 9.71324 5.13034C9.7576 5.68085 10.2398 6.09115 10.7903 6.0468Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -97,7 +97,7 @@ exports[` should render WifiOffIcon 1`] = ` fill={4282603381} height="24" propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/WindIcon/__snapshots__/WindIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/WindIcon/__snapshots__/WindIcon.native.test.tsx.snap index 332e1660329..a23775c2dfc 100644 --- a/packages/blade/src/components/Icons/WindIcon/__snapshots__/WindIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/WindIcon/__snapshots__/WindIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render WindIcon 1`] = ` should render WindIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render WindIcon 1`] = ` should render WindIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/XCircleIcon/__snapshots__/XCircleIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/XCircleIcon/__snapshots__/XCircleIcon.native.test.tsx.snap index a5da31e7d24..250abd0b184 100644 --- a/packages/blade/src/components/Icons/XCircleIcon/__snapshots__/XCircleIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/XCircleIcon/__snapshots__/XCircleIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render XCircleIcon 1`] = ` should render XCircleIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render XCircleIcon 1`] = ` should render XCircleIcon 1`] = ` d="M15.7071 8.29289C16.0976 8.68342 16.0976 9.31658 15.7071 9.70711L13.4142 12L15.7071 14.2929C16.0976 14.6834 16.0976 15.3166 15.7071 15.7071C15.3166 16.0976 14.6834 16.0976 14.2929 15.7071L12 13.4142L9.70711 15.7071C9.31658 16.0976 8.68342 16.0976 8.29289 15.7071C7.90237 15.3166 7.90237 14.6834 8.29289 14.2929L10.5858 12L8.29289 9.70711C7.90237 9.31658 7.90237 8.68342 8.29289 8.29289C8.68342 7.90237 9.31658 7.90237 9.70711 8.29289L12 10.5858L14.2929 8.29289C14.6834 7.90237 15.3166 7.90237 15.7071 8.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render XCircleIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/XSquareIcon/__snapshots__/XSquareIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/XSquareIcon/__snapshots__/XSquareIcon.native.test.tsx.snap index b69cb1cd91b..7346a6e5178 100644 --- a/packages/blade/src/components/Icons/XSquareIcon/__snapshots__/XSquareIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/XSquareIcon/__snapshots__/XSquareIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render XSquareIcon 1`] = ` should render XSquareIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render XSquareIcon 1`] = ` should render XSquareIcon 1`] = ` d="M8.29289 8.29289C8.68342 7.90237 9.31658 7.90237 9.70711 8.29289L12 10.5858L14.2929 8.29289C14.6834 7.90237 15.3166 7.90237 15.7071 8.29289C16.0976 8.68342 16.0976 9.31658 15.7071 9.70711L13.4142 12L15.7071 14.2929C16.0976 14.6834 16.0976 15.3166 15.7071 15.7071C15.3166 16.0976 14.6834 16.0976 14.2929 15.7071L12 13.4142L9.70711 15.7071C9.31658 16.0976 8.68342 16.0976 8.29289 15.7071C7.90237 15.3166 7.90237 14.6834 8.29289 14.2929L10.5858 12L8.29289 9.70711C7.90237 9.31658 7.90237 8.68342 8.29289 8.29289Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render XSquareIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ZapIcon/__snapshots__/ZapIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ZapIcon/__snapshots__/ZapIcon.native.test.tsx.snap index 27c9d410771..0a919c72105 100644 --- a/packages/blade/src/components/Icons/ZapIcon/__snapshots__/ZapIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ZapIcon/__snapshots__/ZapIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ZapIcon 1`] = ` should render ZapIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ZapIcon 1`] = ` should render ZapIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ZoomInIcon/__snapshots__/ZoomInIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ZoomInIcon/__snapshots__/ZoomInIcon.native.test.tsx.snap index f082873f84d..1b2529713c2 100644 --- a/packages/blade/src/components/Icons/ZoomInIcon/__snapshots__/ZoomInIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ZoomInIcon/__snapshots__/ZoomInIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ZoomInIcon 1`] = ` should render ZoomInIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ZoomInIcon 1`] = ` should render ZoomInIcon 1`] = ` d="M11 7C11.5523 7 12 7.44772 12 8V10H14C14.5523 10 15 10.4477 15 11C15 11.5523 14.5523 12 14 12H12V14C12 14.5523 11.5523 15 11 15C10.4477 15 10 14.5523 10 14V12H8C7.44772 12 7 11.5523 7 11C7 10.4477 7.44772 10 8 10H10V8C10 7.44772 10.4477 7 11 7Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render ZoomInIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/ZoomOutIcon/__snapshots__/ZoomOutIcon.native.test.tsx.snap b/packages/blade/src/components/Icons/ZoomOutIcon/__snapshots__/ZoomOutIcon.native.test.tsx.snap index 3a01561364c..16302f9c69c 100644 --- a/packages/blade/src/components/Icons/ZoomOutIcon/__snapshots__/ZoomOutIcon.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/ZoomOutIcon/__snapshots__/ZoomOutIcon.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render ZoomOutIcon 1`] = ` should render ZoomOutIcon 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render ZoomOutIcon 1`] = ` should render ZoomOutIcon 1`] = ` d="M8 10C7.44772 10 7 10.4477 7 11C7 11.5523 7.44772 12 8 12H14C14.5523 12 15 11.5523 15 11C15 10.4477 14.5523 10 14 10H8Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -64,7 +64,7 @@ exports[` should render ZoomOutIcon 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] diff --git a/packages/blade/src/components/Icons/_Svg/Circle/__tests__/__snapshots__/Circle.native.test.tsx.snap b/packages/blade/src/components/Icons/_Svg/Circle/__tests__/__snapshots__/Circle.native.test.tsx.snap index 3766707b258..75302f0a7d1 100644 --- a/packages/blade/src/components/Icons/_Svg/Circle/__tests__/__snapshots__/Circle.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/_Svg/Circle/__tests__/__snapshots__/Circle.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render react-native-svg Circle component 1`] = ` should render react-native-svg Circle component 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 110, "width": 400, @@ -45,7 +45,7 @@ exports[` should render react-native-svg Circle component 1`] = ` cx="200" cy="100" matrix={ - Array [ + [ 1, 0, -0, @@ -55,7 +55,7 @@ exports[` should render react-native-svg Circle component 1`] = ` ] } propList={ - Array [ + [ "strokeWidth", ] } diff --git a/packages/blade/src/components/Icons/_Svg/ClipPath/__tests__/__snapshots__/ClipPath.native.test.tsx.snap b/packages/blade/src/components/Icons/_Svg/ClipPath/__tests__/__snapshots__/ClipPath.native.test.tsx.snap index bff66f45e10..0d36ebf2091 100644 --- a/packages/blade/src/components/Icons/_Svg/ClipPath/__tests__/__snapshots__/ClipPath.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/_Svg/ClipPath/__tests__/__snapshots__/ClipPath.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render react-native-svg ClipPath component 1`] = ` should render react-native-svg ClipPath component 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 40, "width": 40, @@ -44,7 +44,7 @@ exports[` should render react-native-svg ClipPath component 1`] = ` should render react-native-svg ClipPath component 1`] = ` d="M2 2h2v2H2V2" fill={4278190080} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/_Svg/Defs/__tests__/__snapshots__/Defs.native.test.tsx.snap b/packages/blade/src/components/Icons/_Svg/Defs/__tests__/__snapshots__/Defs.native.test.tsx.snap index 608c6873729..8de44e3a9a2 100644 --- a/packages/blade/src/components/Icons/_Svg/Defs/__tests__/__snapshots__/Defs.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/_Svg/Defs/__tests__/__snapshots__/Defs.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render react-native-svg Defs component 1`] = ` should render react-native-svg Defs component 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 40, "width": 40, @@ -44,7 +44,7 @@ exports[` should render react-native-svg Defs component 1`] = ` should render react-native-svg Defs component 1`] = ` d="M2 2h2v2H2V2" fill={4278190080} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/_Svg/G/__tests__/__snapshots__/G.native.test.tsx.snap b/packages/blade/src/components/Icons/_Svg/G/__tests__/__snapshots__/G.native.test.tsx.snap index b612d81ffb5..fdc8277e7bd 100644 --- a/packages/blade/src/components/Icons/_Svg/G/__tests__/__snapshots__/G.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/_Svg/G/__tests__/__snapshots__/G.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render react-native-svg G component 1`] = ` should render react-native-svg G component 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 40, "width": 40, @@ -44,7 +44,7 @@ exports[` should render react-native-svg G component 1`] = ` should render react-native-svg G component 1`] = ` d="M2 2h2v2H2V2" fill={4278190080} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Icons/_Svg/Path/__tests__/__snapshots__/Path.native.test.tsx.snap b/packages/blade/src/components/Icons/_Svg/Path/__tests__/__snapshots__/Path.native.test.tsx.snap index fbb9dac9687..16d7d6c988d 100644 --- a/packages/blade/src/components/Icons/_Svg/Path/__tests__/__snapshots__/Path.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/_Svg/Path/__tests__/__snapshots__/Path.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should not accept dashed props 1`] = ` should not accept dashed props 1`] = ` exports[` should render react-native-svg Path component 1`] = ` should render react-native-svg Path component 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 40, "width": 40, @@ -58,7 +58,7 @@ exports[` should render react-native-svg Path component 1`] = ` should render react-native-svg Path component 1`] = ` fillOpacity={0.5} fillRule={1} propList={ - Array [ + [ "fill", "fillOpacity", "fillRule", diff --git a/packages/blade/src/components/Icons/_Svg/Rect/__tests__/__snapshots__/Rect.native.test.tsx.snap b/packages/blade/src/components/Icons/_Svg/Rect/__tests__/__snapshots__/Rect.native.test.tsx.snap index acf5a8cc43c..ded5f48835c 100644 --- a/packages/blade/src/components/Icons/_Svg/Rect/__tests__/__snapshots__/Rect.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/_Svg/Rect/__tests__/__snapshots__/Rect.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render react-native-svg Rect component 1`] = ` should render react-native-svg Rect component 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 110, "width": 400, diff --git a/packages/blade/src/components/Icons/_Svg/Svg/__tests__/__snapshots__/Svg.native.test.tsx.snap b/packages/blade/src/components/Icons/_Svg/Svg/__tests__/__snapshots__/Svg.native.test.tsx.snap index 5a7f50b7a46..c670c5f24f3 100644 --- a/packages/blade/src/components/Icons/_Svg/Svg/__tests__/__snapshots__/Svg.native.test.tsx.snap +++ b/packages/blade/src/components/Icons/_Svg/Svg/__tests__/__snapshots__/Svg.native.test.tsx.snap @@ -3,7 +3,7 @@ exports[` should render react-native-svg Svg component 1`] = ` should render react-native-svg Svg component 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 20, "width": 20, @@ -44,7 +44,7 @@ exports[` should render react-native-svg Svg component 1`] = ` should render react-native-svg Svg component 1`] = ` d="M2 2h2v2H2V2" fill={4278190080} propList={ - Array [ + [ "fill", ] } diff --git a/packages/blade/src/components/Indicator/__tests__/__snapshots__/Indicator.native.test.tsx.snap b/packages/blade/src/components/Indicator/__tests__/__snapshots__/Indicator.native.test.tsx.snap index 0f37aa1c799..eb4bb300715 100644 --- a/packages/blade/src/components/Indicator/__tests__/__snapshots__/Indicator.native.test.tsx.snap +++ b/packages/blade/src/components/Indicator/__tests__/__snapshots__/Indicator.native.test.tsx.snap @@ -3,18 +3,19 @@ exports[` should render 1`] = ` should render 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -49,15 +50,15 @@ exports[` should render 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 8, "width": 8, @@ -71,7 +72,7 @@ exports[` should render 1`] = ` should render 1`] = ` cy="5" fill={4281484642} propList={ - Array [ + [ "fill", ] } @@ -91,7 +92,7 @@ exports[` should render 1`] = ` cx="5" cy="5" propList={ - Array [ + [ "stroke", "strokeWidth", ] @@ -105,14 +106,15 @@ exports[` should render 1`] = ` should render 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -153,18 +155,19 @@ exports[` should render 1`] = ` exports[` should render different variants for size and intent 1`] = ` should render different variants for size and intent 1`] display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -199,15 +202,15 @@ exports[` should render different variants for size and intent 1`] minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 6, "width": 6, @@ -221,7 +224,7 @@ exports[` should render different variants for size and intent 1`] should render different variants for size and intent 1`] cy="5" fill={4290738691} propList={ - Array [ + [ "fill", ] } @@ -241,7 +244,7 @@ exports[` should render different variants for size and intent 1`] cx="5" cy="5" propList={ - Array [ + [ "stroke", "strokeWidth", ] @@ -255,14 +258,15 @@ exports[` should render different variants for size and intent 1`] should render different variants for size and intent 1`] fontWeight="regular" lineHeight={50} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -299,11 +303,12 @@ exports[` should render different variants for size and intent 1`] should render different variants for size and intent 1`] display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -338,15 +343,15 @@ exports[` should render different variants for size and intent 1`] minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 8, "width": 8, @@ -360,7 +365,7 @@ exports[` should render different variants for size and intent 1`] should render different variants for size and intent 1`] cy="5" fill={4278224216} propList={ - Array [ + [ "fill", ] } @@ -380,7 +385,7 @@ exports[` should render different variants for size and intent 1`] cx="5" cy="5" propList={ - Array [ + [ "stroke", "strokeWidth", ] @@ -394,14 +399,15 @@ exports[` should render different variants for size and intent 1`] should render different variants for size and intent 1`] fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -438,11 +444,12 @@ exports[` should render different variants for size and intent 1`] should render different variants for size and intent 1`] display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -477,15 +484,15 @@ exports[` should render different variants for size and intent 1`] minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 10, "width": 10, @@ -499,7 +506,7 @@ exports[` should render different variants for size and intent 1`] should render different variants for size and intent 1`] cy="5" fill={4291770400} propList={ - Array [ + [ "fill", ] } @@ -519,7 +526,7 @@ exports[` should render different variants for size and intent 1`] cx="5" cy="5" propList={ - Array [ + [ "stroke", "strokeWidth", ] @@ -533,14 +540,15 @@ exports[` should render different variants for size and intent 1`] should render different variants for size and intent 1`] fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -577,11 +585,12 @@ exports[` should render different variants for size and intent 1`] should render different variants for size and intent 1`] display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -616,15 +625,15 @@ exports[` should render different variants for size and intent 1`] minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 8, "width": 8, @@ -638,7 +647,7 @@ exports[` should render different variants for size and intent 1`] should render different variants for size and intent 1`] cy="5" fill={4278226099} propList={ - Array [ + [ "fill", ] } @@ -658,7 +667,7 @@ exports[` should render different variants for size and intent 1`] cx="5" cy="5" propList={ - Array [ + [ "stroke", "strokeWidth", ] @@ -672,14 +681,15 @@ exports[` should render different variants for size and intent 1`] should render different variants for size and intent 1`] fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(216, 27%, 36%, 1)", "fontFamily": "Lato", "fontSize": 14, diff --git a/packages/blade/src/components/Indicator/__tests__/__snapshots__/Indicator.ssr.test.tsx.snap b/packages/blade/src/components/Indicator/__tests__/__snapshots__/Indicator.ssr.test.tsx.snap index f2aa5e5eb1c..4bd5be1337f 100644 --- a/packages/blade/src/components/Indicator/__tests__/__snapshots__/Indicator.ssr.test.tsx.snap +++ b/packages/blade/src/components/Indicator/__tests__/__snapshots__/Indicator.ssr.test.tsx.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[` should have role and a11y label when text label is passed 1`] = `"

Active

"`; +exports[` should have role and a11y label when text label is passed 1`] = `"

Active

"`; exports[` should have role and a11y label when text label is passed 2`] = `
should render 1`] = ` should render 1`] = ` @@ -22,8 +22,8 @@ exports[` should render 1`] = ` flexDirection="column" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", "position": "relative", @@ -39,8 +39,8 @@ exports[` should render 1`] = ` flexDirection="row" justifyContent="space-between" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "justifyContent": "space-between", @@ -53,8 +53,8 @@ exports[` should render 1`] = ` should render 1`] = ` gap="spacing.0" maxHeight="36px" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -83,6 +83,7 @@ exports[` should render 1`] = ` } > should render 1`] = ` lineHeight={50} numberOfLines={2} style={ - Array [ - Object { + [ + { "color": "hsla(217, 18%, 45%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -118,8 +119,8 @@ exports[` should render 1`] = ` should render 1`] = ` } > should render 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -185,14 +187,14 @@ exports[` should render 1`] = ` flexDirection="row" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "position": "relative", "width": "100%", }, - Object { + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderBottomStyle": "solid", @@ -209,11 +211,12 @@ exports[` should render 1`] = ` accessibilityInvalid={false} accessibilityRequired={false} accessibilityState={ - Object { + { "disabled": false, "expanded": undefined, } } + accessible={true} data-blade-component="styled-base-input" editable={true} id="name-1-input-2" @@ -229,8 +232,8 @@ exports[` should render 1`] = ` onSubmitEditing={[Function]} secureTextEntry={false} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "color": "hsla(216, 27%, 36%, 1)", "flexBasis": 0, @@ -258,8 +261,8 @@ exports[` should render 1`] = ` /> should render 1`] = ` "position": "absolute", "right": 0, }, - Object { + { "opacity": undefined, "width": "undefined%", }, @@ -280,8 +283,8 @@ exports[` should render 1`] = ` should render 1`] = ` flexDirection="row" justifyContent="flex-end" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "justifyContent": "flex-end", @@ -310,7 +313,7 @@ exports[` should render 1`] = ` exports[` should render with icons 1`] = ` should render with icons 1`] = ` @@ -329,8 +332,8 @@ exports[` should render with icons 1`] = ` flexDirection="column" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", "position": "relative", @@ -346,8 +349,8 @@ exports[` should render with icons 1`] = ` flexDirection="row" justifyContent="space-between" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "justifyContent": "space-between", @@ -360,8 +363,8 @@ exports[` should render with icons 1`] = ` should render with icons 1`] = ` gap="spacing.0" maxHeight="36px" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -390,6 +393,7 @@ exports[` should render with icons 1`] = ` } > should render with icons 1`] = ` lineHeight={50} numberOfLines={2} style={ - Array [ - Object { + [ + { "color": "hsla(217, 18%, 45%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -425,8 +429,8 @@ exports[` should render with icons 1`] = ` should render with icons 1`] = ` } > should render with icons 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -492,14 +497,14 @@ exports[` should render with icons 1`] = ` flexDirection="row" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "position": "relative", "width": "100%", }, - Object { + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderBottomStyle": "solid", @@ -517,8 +522,8 @@ exports[` should render with icons 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -530,8 +535,8 @@ exports[` should render with icons 1`] = ` data-blade-component="base-box" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", "paddingLeft": 12, }, @@ -552,15 +557,15 @@ exports[` should render with icons 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 16, "width": 16, @@ -574,7 +579,7 @@ exports[` should render with icons 1`] = ` should render with icons 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -597,7 +602,7 @@ exports[` should render with icons 1`] = ` fill={4282603381} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -612,11 +617,12 @@ exports[` should render with icons 1`] = ` accessibilityInvalid={false} accessibilityRequired={false} accessibilityState={ - Object { + { "disabled": false, "expanded": undefined, } } + accessible={true} data-blade-component="styled-base-input" editable={true} id="name-31-input-32" @@ -634,8 +640,8 @@ exports[` should render with icons 1`] = ` placeholder="First Last" secureTextEntry={false} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "color": "hsla(216, 27%, 36%, 1)", "flexBasis": 0, @@ -668,8 +674,8 @@ exports[` should render with icons 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -681,8 +687,8 @@ exports[` should render with icons 1`] = ` data-blade-component="base-box" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", "paddingRight": 12, }, @@ -703,15 +709,15 @@ exports[` should render with icons 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 16, "width": 16, @@ -725,7 +731,7 @@ exports[` should render with icons 1`] = ` should render with icons 1`] = ` d="M18.7071 6.70711C19.0976 6.31658 19.0976 5.68342 18.7071 5.29289C18.3166 4.90237 17.6834 4.90237 17.2929 5.29289L12 10.5858L6.70711 5.29289C6.31658 4.90237 5.68342 4.90237 5.29289 5.29289C4.90237 5.68342 4.90237 6.31658 5.29289 6.70711L10.5858 12L5.29289 17.2929C4.90237 17.6834 4.90237 18.3166 5.29289 18.7071C5.68342 19.0976 6.31658 19.0976 6.70711 18.7071L12 13.4142L17.2929 18.7071C17.6834 19.0976 18.3166 19.0976 18.7071 18.7071C19.0976 18.3166 19.0976 17.6834 18.7071 17.2929L13.4142 12L18.7071 6.70711Z" fill={4282603381} propList={ - Array [ + [ "fill", ] } @@ -745,8 +751,8 @@ exports[` should render with icons 1`] = ` should render with icons 1`] = ` "position": "absolute", "right": 0, }, - Object { + { "opacity": undefined, "width": "undefined%", }, @@ -767,8 +773,8 @@ exports[` should render with icons 1`] = ` should render with icons 1`] = ` flexDirection="row" justifyContent="flex-end" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "justifyContent": "flex-end", diff --git a/packages/blade/src/components/Input/BaseInput/__tests__/__snapshots__/BaseInput.ssr.test.tsx.snap b/packages/blade/src/components/Input/BaseInput/__tests__/__snapshots__/BaseInput.ssr.test.tsx.snap index b252637afef..dd08e6d568b 100644 --- a/packages/blade/src/components/Input/BaseInput/__tests__/__snapshots__/BaseInput.ssr.test.tsx.snap +++ b/packages/blade/src/components/Input/BaseInput/__tests__/__snapshots__/BaseInput.ssr.test.tsx.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[` should display success validation state 1`] = `"
Success
"`; +exports[` should display success validation state 1`] = `"
Success
"`; exports[` should display success validation state 2`] = `
should render 1`] = ` should render 1`] = ` @@ -22,8 +22,8 @@ exports[` should render 1`] = ` flexDirection="column" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", "position": "relative", @@ -34,8 +34,8 @@ exports[` should render 1`] = ` should render 1`] = ` gap="spacing.0" maxHeight="36px" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -64,6 +64,7 @@ exports[` should render 1`] = ` } > should render 1`] = ` lineHeight={50} numberOfLines={2} style={ - Array [ - Object { + [ + { "color": "hsla(217, 18%, 45%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -99,8 +100,8 @@ exports[` should render 1`] = ` should render 1`] = ` } > should render 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -163,8 +165,8 @@ exports[` should render 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", }, @@ -174,8 +176,8 @@ exports[` should render 1`] = ` should render 1`] = ` @@ -198,8 +200,8 @@ exports[` should render 1`] = ` flexDirection="column" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", "position": "relative", @@ -216,14 +218,14 @@ exports[` should render 1`] = ` flexDirection="row" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "position": "relative", "width": "100%", }, - Object { + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderBottomStyle": "solid", @@ -241,11 +243,12 @@ exports[` should render 1`] = ` accessibilityLabel="Enter OTP character 1" accessibilityRequired={true} accessibilityState={ - Object { + { "disabled": false, "expanded": undefined, } } + accessible={true} autoCompleteType="sms-otp" data-blade-component="styled-base-input" editable={true} @@ -263,8 +266,8 @@ exports[` should render 1`] = ` placeholder="" secureTextEntry={false} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "color": "hsla(216, 27%, 36%, 1)", "flexBasis": 0, @@ -295,8 +298,8 @@ exports[` should render 1`] = ` /> should render 1`] = ` "position": "absolute", "right": 0, }, - Object { + { "opacity": undefined, "width": "undefined%", }, @@ -319,8 +322,8 @@ exports[` should render 1`] = ` should render 1`] = ` @@ -343,8 +346,8 @@ exports[` should render 1`] = ` flexDirection="column" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", "position": "relative", @@ -361,14 +364,14 @@ exports[` should render 1`] = ` flexDirection="row" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "position": "relative", "width": "100%", }, - Object { + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderBottomStyle": "solid", @@ -386,11 +389,12 @@ exports[` should render 1`] = ` accessibilityLabel=" character 2" accessibilityRequired={true} accessibilityState={ - Object { + { "disabled": false, "expanded": undefined, } } + accessible={true} autoCompleteType="sms-otp" data-blade-component="styled-base-input" editable={true} @@ -408,8 +412,8 @@ exports[` should render 1`] = ` placeholder="" secureTextEntry={false} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "color": "hsla(216, 27%, 36%, 1)", "flexBasis": 0, @@ -440,8 +444,8 @@ exports[` should render 1`] = ` /> should render 1`] = ` "position": "absolute", "right": 0, }, - Object { + { "opacity": undefined, "width": "undefined%", }, @@ -464,8 +468,8 @@ exports[` should render 1`] = ` should render 1`] = ` @@ -488,8 +492,8 @@ exports[` should render 1`] = ` flexDirection="column" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", "position": "relative", @@ -506,14 +510,14 @@ exports[` should render 1`] = ` flexDirection="row" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "position": "relative", "width": "100%", }, - Object { + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderBottomStyle": "solid", @@ -531,11 +535,12 @@ exports[` should render 1`] = ` accessibilityLabel=" character 3" accessibilityRequired={true} accessibilityState={ - Object { + { "disabled": false, "expanded": undefined, } } + accessible={true} autoCompleteType="sms-otp" data-blade-component="styled-base-input" editable={true} @@ -553,8 +558,8 @@ exports[` should render 1`] = ` placeholder="" secureTextEntry={false} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "color": "hsla(216, 27%, 36%, 1)", "flexBasis": 0, @@ -585,8 +590,8 @@ exports[` should render 1`] = ` /> should render 1`] = ` "position": "absolute", "right": 0, }, - Object { + { "opacity": undefined, "width": "undefined%", }, @@ -609,8 +614,8 @@ exports[` should render 1`] = ` should render 1`] = ` @@ -633,8 +638,8 @@ exports[` should render 1`] = ` flexDirection="column" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", "position": "relative", @@ -651,14 +656,14 @@ exports[` should render 1`] = ` flexDirection="row" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "position": "relative", "width": "100%", }, - Object { + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderBottomStyle": "solid", @@ -676,11 +681,12 @@ exports[` should render 1`] = ` accessibilityLabel=" character 4" accessibilityRequired={true} accessibilityState={ - Object { + { "disabled": false, "expanded": undefined, } } + accessible={true} autoCompleteType="sms-otp" data-blade-component="styled-base-input" editable={true} @@ -698,8 +704,8 @@ exports[` should render 1`] = ` placeholder="" secureTextEntry={false} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "color": "hsla(216, 27%, 36%, 1)", "flexBasis": 0, @@ -730,8 +736,8 @@ exports[` should render 1`] = ` /> should render 1`] = ` "position": "absolute", "right": 0, }, - Object { + { "opacity": undefined, "width": "undefined%", }, @@ -754,8 +760,8 @@ exports[` should render 1`] = ` should render 1`] = ` @@ -778,8 +784,8 @@ exports[` should render 1`] = ` flexDirection="column" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", "position": "relative", @@ -796,14 +802,14 @@ exports[` should render 1`] = ` flexDirection="row" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "position": "relative", "width": "100%", }, - Object { + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderBottomStyle": "solid", @@ -821,11 +827,12 @@ exports[` should render 1`] = ` accessibilityLabel=" character 5" accessibilityRequired={true} accessibilityState={ - Object { + { "disabled": false, "expanded": undefined, } } + accessible={true} autoCompleteType="sms-otp" data-blade-component="styled-base-input" editable={true} @@ -843,8 +850,8 @@ exports[` should render 1`] = ` placeholder="" secureTextEntry={false} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "color": "hsla(216, 27%, 36%, 1)", "flexBasis": 0, @@ -875,8 +882,8 @@ exports[` should render 1`] = ` /> should render 1`] = ` "position": "absolute", "right": 0, }, - Object { + { "opacity": undefined, "width": "undefined%", }, @@ -899,8 +906,8 @@ exports[` should render 1`] = ` should render 1`] = ` @@ -923,8 +930,8 @@ exports[` should render 1`] = ` flexDirection="column" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", "position": "relative", @@ -941,14 +948,14 @@ exports[` should render 1`] = ` flexDirection="row" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "position": "relative", "width": "100%", }, - Object { + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderBottomStyle": "solid", @@ -966,11 +973,12 @@ exports[` should render 1`] = ` accessibilityLabel=" character 6" accessibilityRequired={true} accessibilityState={ - Object { + { "disabled": false, "expanded": undefined, } } + accessible={true} autoCompleteType="sms-otp" data-blade-component="styled-base-input" editable={true} @@ -988,8 +996,8 @@ exports[` should render 1`] = ` placeholder="" secureTextEntry={false} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "color": "hsla(216, 27%, 36%, 1)", "flexBasis": 0, @@ -1020,8 +1028,8 @@ exports[` should render 1`] = ` /> should render 1`] = ` "position": "absolute", "right": 0, }, - Object { + { "opacity": undefined, "width": "undefined%", }, @@ -1046,8 +1054,8 @@ exports[` should render 1`] = ` should have hidden input for form submissions 1`] = `"
"`; +exports[` should have hidden input for form submissions 1`] = `"
"`; exports[` should have hidden input for form submissions 2`] = `
should render 1`] = ` should render 1`] = ` @@ -22,8 +22,8 @@ exports[` should render 1`] = ` flexDirection="column" position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "column", "position": "relative", @@ -39,8 +39,8 @@ exports[` should render 1`] = ` flexDirection="row" justifyContent="space-between" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "justifyContent": "space-between", @@ -53,8 +53,8 @@ exports[` should render 1`] = ` should render 1`] = ` gap="spacing.0" maxHeight="36px" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -83,6 +83,7 @@ exports[` should render 1`] = ` } > should render 1`] = ` lineHeight={50} numberOfLines={2} style={ - Array [ - Object { + [ + { "color": "hsla(217, 18%, 45%, 1)", "fontFamily": "Lato", "fontSize": 12, @@ -118,8 +119,8 @@ exports[` should render 1`] = ` should render 1`] = ` } > should render 1`] = ` fontWeight="regular" lineHeight={100} style={ - Array [ - Object { + [ + { "color": "hsla(217, 56%, 17%, 1)", "fontFamily": "Lato", "fontSize": 14, @@ -186,14 +188,14 @@ exports[` should render 1`] = ` isDisabled={false} position="relative" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "position": "relative", "width": "100%", }, - Object { + { "backgroundColor": "hsla(216, 15%, 54%, 0.09)", "borderBottomColor": "hsla(216, 15%, 54%, 0.18)", "borderBottomStyle": "solid", @@ -210,11 +212,12 @@ exports[` should render 1`] = ` accessibilityInvalid={false} accessibilityRequired={false} accessibilityState={ - Object { + { "disabled": false, "expanded": undefined, } } + accessible={true} autoCapitalize="none" autoFocus={false} data-blade-component="styled-base-input" @@ -241,8 +244,8 @@ exports[` should render 1`] = ` returnKeyType="done" secureTextEntry={true} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "color": "hsla(216, 27%, 36%, 1)", "flexBasis": 0, @@ -274,8 +277,8 @@ exports[` should render 1`] = ` display="flex" flexDirection="row" style={ - Array [ - Object { + [ + { "alignItems": "center", "display": "flex", "flexDirection": "row", @@ -287,8 +290,8 @@ exports[` should render 1`] = ` data-blade-component="base-box" display="flex" style={ - Array [ - Object { + [ + { "display": "flex", "paddingRight": 12, }, @@ -312,8 +315,8 @@ exports[` should render 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ - Array [ - Object { + [ + { "alignSelf": "center", }, ] @@ -333,15 +336,15 @@ exports[` should render 1`] = ` minX={0} minY={0} style={ - Array [ - Object { + [ + { "backgroundColor": "transparent", "borderWidth": 0, }, - Array [ - Object {}, + [ + {}, ], - Object { + { "flex": 0, "height": 16, "width": 16, @@ -355,7 +358,7 @@ exports[` should render 1`] = ` should render 1`] = ` fill={4288851646} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -378,7 +381,7 @@ exports[` should render 1`] = ` fill={4288851646} fillRule={0} propList={ - Array [ + [ "fill", "fillRule", ] @@ -391,8 +394,8 @@ exports[` should render 1`] = ` should render 1`] = ` "position": "absolute", "right": 0, }, - Object { + { "opacity": undefined, "width": "undefined%", }, @@ -413,8 +416,8 @@ exports[` should render 1`] = ` should render 1`] = ` flexDirection="row" justifyContent="flex-end" style={ - Array [ - Object { + [ + { "display": "flex", "flexDirection": "row", "justifyContent": "flex-end", diff --git a/packages/blade/src/components/Input/PasswordInput/__tests__/__snapshots__/PasswordInput.ssr.test.tsx.snap b/packages/blade/src/components/Input/PasswordInput/__tests__/__snapshots__/PasswordInput.ssr.test.tsx.snap index b772681818f..a5dcdb6d9b3 100644 --- a/packages/blade/src/components/Input/PasswordInput/__tests__/__snapshots__/PasswordInput.ssr.test.tsx.snap +++ b/packages/blade/src/components/Input/PasswordInput/__tests__/__snapshots__/PasswordInput.ssr.test.tsx.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[` should display error validation state 1`] = `"
Error
"`; +exports[` should display error validation state 1`] = `"
Error
"`; exports[` should display error validation state 2`] = `
should render 1`] = ` should render 1`] = ` @@ -22,8 +22,8 @@ exports[`
"`; +exports[`
"`; exports[`