├── .babelrc ├── .github └── workflows │ ├── add_issues_to_project.yml │ └── main.yml ├── .gitignore ├── .storybook ├── main.ts ├── preview-head.html └── preview.tsx ├── ChangeLog.md ├── LICENSE ├── Readme.md ├── animations ├── CrossNotOK.json ├── RunningCircumvention.json ├── RunningExperimental.json ├── RunningInstantMessaging.json ├── RunningMiddleBoxes.json ├── RunningPerformance.json ├── RunningWebsites.json └── TickOK.json ├── biome.json ├── icons ├── package.json └── tsconfig.json ├── jest.config.json ├── package.json ├── postcss.config.js ├── rollup.config.mjs ├── src ├── __mocks__ │ └── svg.ts ├── __test__ │ ├── Icons.test.tsx │ ├── Input.test.tsx │ ├── Modal.test.tsx │ ├── Select.test.tsx │ ├── Textarea.test.tsx │ ├── index.tsx │ └── setupTests.ts ├── bin │ └── create-icons.js ├── components │ ├── Checkbox.tsx │ ├── ErrorMessage.tsx │ ├── IconButton.tsx │ ├── Input.tsx │ ├── LogoOONIRun.tsx │ ├── Modal.tsx │ ├── MultiSelect.tsx │ ├── MultiSelectCreatable.tsx │ ├── RadioButton.tsx │ ├── RadioGroup.tsx │ ├── Select.tsx │ ├── Textarea.tsx │ └── icons │ │ ├── CategoryCodeALDR.tsx │ │ ├── CategoryCodeANON.tsx │ │ ├── CategoryCodeCOMM.tsx │ │ ├── CategoryCodeCOMT.tsx │ │ ├── CategoryCodeCULTR.tsx │ │ ├── CategoryCodeDATE.tsx │ │ ├── CategoryCodeECON.tsx │ │ ├── CategoryCodeENV.tsx │ │ ├── CategoryCodeFILE.tsx │ │ ├── CategoryCodeGAME.tsx │ │ ├── CategoryCodeGMB.tsx │ │ ├── CategoryCodeGOVT.tsx │ │ ├── CategoryCodeGRP.tsx │ │ ├── CategoryCodeHACK.tsx │ │ ├── CategoryCodeHATE.tsx │ │ ├── CategoryCodeHOST.tsx │ │ ├── CategoryCodeHUMR.tsx │ │ ├── CategoryCodeIGO.tsx │ │ ├── CategoryCodeLGBT.tsx │ │ ├── CategoryCodeMILX.tsx │ │ ├── CategoryCodeMISC.tsx │ │ ├── CategoryCodeMMED.tsx │ │ ├── CategoryCodeNEWS.tsx │ │ ├── CategoryCodePOLR.tsx │ │ ├── CategoryCodePORN.tsx │ │ ├── CategoryCodePROV.tsx │ │ ├── CategoryCodePUBH.tsx │ │ ├── CategoryCodeREL.tsx │ │ ├── CategoryCodeSRCH.tsx │ │ ├── CategoryCodeXED.tsx │ │ ├── Cross.tsx │ │ ├── NettestFacebookMessenger.tsx │ │ ├── NettestGroupCircumvention.tsx │ │ ├── NettestGroupExperimental.tsx │ │ ├── NettestGroupInstantMessaging.tsx │ │ ├── NettestGroupMiddleBoxes.tsx │ │ ├── NettestGroupPerformance.tsx │ │ ├── NettestGroupWebsites.tsx │ │ ├── NettestPsiphon.tsx │ │ ├── NettestRiseupVPN.tsx │ │ ├── NettestSignal.tsx │ │ ├── NettestTelegram.tsx │ │ ├── NettestTor.tsx │ │ ├── NettestVanillaTor.tsx │ │ ├── NettestWhatsApp.tsx │ │ ├── Tick.tsx │ │ └── index.ts ├── index.ts ├── tailwind.css ├── theme │ ├── colors.ts │ └── index.ts └── types │ └── svg.d.ts ├── stories ├── Brand.mdx ├── Buttons.mdx ├── Checkbox.stories.tsx ├── Colors.mdx ├── GettingStarted.mdx ├── IconButton.stories.tsx ├── Input.stories.tsx ├── Introduction.mdx ├── LogoOONIRun.stories.tsx ├── Modal.stories.tsx ├── MultiSelect.stories.tsx ├── MultiSelectCreatable.stories.tsx ├── OONIIcons.stories.tsx ├── RadioButton.stories.tsx ├── RadioGroup.stories.tsx ├── Select.stories.tsx ├── Textarea.stories.tsx ├── assets │ ├── XXX.svg │ ├── code-brackets.svg │ ├── colors.svg │ ├── comments.svg │ ├── direction.svg │ ├── donts.svg │ ├── flow.svg │ ├── minimum-spacing.svg │ ├── ooni-logo-uses.svg │ ├── plugin.svg │ ├── repo.svg │ ├── stackalt.svg │ └── sub-brands.svg └── components │ └── ColorPalette.tsx ├── svgs ├── banners │ ├── PoweredByOONIColorLightBackground.svg │ ├── PoweredByOONIMonochromeDarkBackground.svg │ └── PoweredByOONIMonochromeLightBackground.svg ├── icons │ ├── CategoryCodeALDR.svg │ ├── CategoryCodeANON.svg │ ├── CategoryCodeCOMM.svg │ ├── CategoryCodeCOMT.svg │ ├── CategoryCodeCULTR.svg │ ├── CategoryCodeDATE.svg │ ├── CategoryCodeECON.svg │ ├── CategoryCodeENV.svg │ ├── CategoryCodeFILE.svg │ ├── CategoryCodeGAME.svg │ ├── CategoryCodeGMB.svg │ ├── CategoryCodeGOVT.svg │ ├── CategoryCodeGRP.svg │ ├── CategoryCodeHACK.svg │ ├── CategoryCodeHATE.svg │ ├── CategoryCodeHOST.svg │ ├── CategoryCodeHUMR.svg │ ├── CategoryCodeIGO.svg │ ├── CategoryCodeLGBT.svg │ ├── CategoryCodeMILX.svg │ ├── CategoryCodeMISC.svg │ ├── CategoryCodeMMED.svg │ ├── CategoryCodeNEWS.svg │ ├── CategoryCodePOLR.svg │ ├── CategoryCodePORN.svg │ ├── CategoryCodePROV.svg │ ├── CategoryCodePUBH.svg │ ├── CategoryCodeREL.svg │ ├── CategoryCodeSRCH.svg │ ├── CategoryCodeXED.svg │ ├── Cross.svg │ ├── NettestFacebookMessenger.svg │ ├── NettestGroupCircumvention.svg │ ├── NettestGroupExperimental.svg │ ├── NettestGroupInstantMessaging.svg │ ├── NettestGroupMiddleBoxes.svg │ ├── NettestGroupPerformance.svg │ ├── NettestGroupWebsites.svg │ ├── NettestPsiphon.svg │ ├── NettestRiseupVPN.svg │ ├── NettestSignal.svg │ ├── NettestTelegram.svg │ ├── NettestTor.svg │ ├── NettestVanillaTor.svg │ ├── NettestWhatsApp.svg │ └── Tick.svg ├── logos │ ├── API-HorizontalColor.svg │ ├── API-HorizontalMonochrome.svg │ ├── API-HorizontalMonochromeInverted.svg │ ├── API-VerticalColor.svg │ ├── API-VerticalMonochrome.svg │ ├── API-VerticalMonochromeInverted.svg │ ├── Explorer-HorizontalColor.svg │ ├── Explorer-HorizontalMonochrome.svg │ ├── Explorer-HorizontalMonochromeInverted.svg │ ├── Explorer-VerticalColor.svg │ ├── Explorer-VerticalMonochrome.svg │ ├── Explorer-VerticalMonochromeInverted.svg │ ├── Icon-Color.svg │ ├── Icon-Inverted.svg │ ├── Icon-Monochrome.svg │ ├── OONI-HorizontalColor.svg │ ├── OONI-HorizontalMonochrome.svg │ ├── OONI-HorizontalMonochromeInverted.svg │ ├── OONI-VerticalColor.svg │ ├── OONI-VerticalMonochrome.svg │ ├── OONI-VerticalMonochromeInverted.svg │ ├── Pipeline-HorizontalColor.svg │ ├── Pipeline-HorizontalMonochrome.svg │ ├── Pipeline-HorizontalMonochromeInverted.svg │ ├── Pipeline-VerticalColor.svg │ ├── Pipeline-VerticalMonochrome.svg │ ├── Pipeline-VerticalMonochromeInverted.svg │ ├── Probe-HorizontalColor.svg │ ├── Probe-HorizontalMonochrome.svg │ ├── Probe-HorizontalMonochromeInverted.svg │ ├── Probe-VerticalColor.svg │ ├── Probe-VerticalMonochrome.svg │ ├── Probe-VerticalMonochromeInverted.svg │ ├── Proteus-HorizontalColor.svg │ ├── Proteus-HorizontalMonochrome.svg │ ├── Proteus-HorizontalMonochromeInverted.svg │ ├── Proteus-VerticalColor.svg │ ├── Proteus-VerticalMonochrome.svg │ ├── Proteus-VerticalMonochromeInverted.svg │ ├── Run-HorizontalColor.svg │ ├── Run-HorizontalMonochrome.svg │ ├── Run-HorizontalMonochromeInverted.svg │ ├── Run-VerticalColor.svg │ ├── Run-VerticalMonochrome.svg │ ├── Run-VerticalMonochromeInverted.svg │ ├── Sync-HorizontalColor.svg │ ├── Sync-HorizontalMonochrome.svg │ ├── Sync-HorizontalMonochromeInverted.svg │ ├── Sync-VerticalColor.svg │ ├── Sync-VerticalMonochrome.svg │ └── Sync-VerticalMonochromeInverted.svg └── to-migrate │ ├── ooni-hypnotic-octopus.svg │ ├── ooni-icons │ ├── Readme.md │ ├── nettests │ │ ├── InstantMessagingColor.svg │ │ ├── InstantMessagingWhite.svg │ │ ├── MiddleboxesColor.svg │ │ ├── MiddleboxesWhite.svg │ │ ├── PerformanceColor.svg │ │ ├── PerformanceWhite.svg │ │ ├── WebsitesColor.svg │ │ └── WebsitesWhite.svg │ ├── network-censorship │ │ ├── censorhip-tampering.svg │ │ ├── censorhip-vendor.svg │ │ └── censorship-confirmed.svg │ ├── network-interference │ │ ├── analysis.svg │ │ ├── country-statistics.svg │ │ ├── measurement.svg │ │ ├── progress.svg │ │ ├── research.svg │ │ ├── server.svg │ │ ├── tor-hollow.svg │ │ └── tor.svg │ ├── networks-and-protocols │ │ ├── centralization.svg │ │ ├── decentralization.svg │ │ ├── distributed.svg │ │ ├── http-body.svg │ │ └── http-headers.svg │ ├── ooni-icons.eot │ ├── ooni-icons.svg │ ├── ooni-icons.ttf │ ├── ooni-icons.woff │ └── website-categories │ │ ├── AlcoholDrugs.svg │ │ ├── Anonymization.svg │ │ ├── CommunicationTools.svg │ │ ├── ControlContent.svg │ │ ├── Culture.svg │ │ ├── ECommerce.svg │ │ ├── Economics.svg │ │ ├── Environment.svg │ │ ├── FileSharing.svg │ │ ├── Gambling.svg │ │ ├── Gaming.svg │ │ ├── Government.svg │ │ ├── HackingTools.svg │ │ ├── HateSpeech.svg │ │ ├── HostingPlatforms.svg │ │ ├── HumanRightsIssues.svg │ │ ├── IntergovernmentalOrganizations.svg │ │ ├── LGBT.svg │ │ ├── MediaSharing.svg │ │ ├── NewsMedia.svg │ │ ├── OnlineDating.svg │ │ ├── PoliticalCriticism.svg │ │ ├── Pornography.svg │ │ ├── ProvocativeAttire.svg │ │ ├── PublicHealth.svg │ │ ├── Religion.svg │ │ ├── SearchEngines.svg │ │ ├── SexEducation.svg │ │ ├── SocialNetworking.svg │ │ └── TerrorismMilitants.svg │ └── ooni-logo-wordmark-horiz.svg ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/workflows/add_issues_to_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/.github/workflows/add_issues_to_project.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/.gitignore -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/.storybook/preview-head.html -------------------------------------------------------------------------------- /.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/.storybook/preview.tsx -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/Readme.md -------------------------------------------------------------------------------- /animations/CrossNotOK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/animations/CrossNotOK.json -------------------------------------------------------------------------------- /animations/RunningCircumvention.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/animations/RunningCircumvention.json -------------------------------------------------------------------------------- /animations/RunningExperimental.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/animations/RunningExperimental.json -------------------------------------------------------------------------------- /animations/RunningInstantMessaging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/animations/RunningInstantMessaging.json -------------------------------------------------------------------------------- /animations/RunningMiddleBoxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/animations/RunningMiddleBoxes.json -------------------------------------------------------------------------------- /animations/RunningPerformance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/animations/RunningPerformance.json -------------------------------------------------------------------------------- /animations/RunningWebsites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/animations/RunningWebsites.json -------------------------------------------------------------------------------- /animations/TickOK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/animations/TickOK.json -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/biome.json -------------------------------------------------------------------------------- /icons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/icons/package.json -------------------------------------------------------------------------------- /icons/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/icons/tsconfig.json -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/jest.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/postcss.config.js -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /src/__mocks__/svg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/__mocks__/svg.ts -------------------------------------------------------------------------------- /src/__test__/Icons.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/__test__/Icons.test.tsx -------------------------------------------------------------------------------- /src/__test__/Input.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/__test__/Input.test.tsx -------------------------------------------------------------------------------- /src/__test__/Modal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/__test__/Modal.test.tsx -------------------------------------------------------------------------------- /src/__test__/Select.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/__test__/Select.test.tsx -------------------------------------------------------------------------------- /src/__test__/Textarea.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/__test__/Textarea.test.tsx -------------------------------------------------------------------------------- /src/__test__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/__test__/index.tsx -------------------------------------------------------------------------------- /src/__test__/setupTests.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom' 2 | -------------------------------------------------------------------------------- /src/bin/create-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/bin/create-icons.js -------------------------------------------------------------------------------- /src/components/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/Checkbox.tsx -------------------------------------------------------------------------------- /src/components/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/ErrorMessage.tsx -------------------------------------------------------------------------------- /src/components/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/IconButton.tsx -------------------------------------------------------------------------------- /src/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/Input.tsx -------------------------------------------------------------------------------- /src/components/LogoOONIRun.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/LogoOONIRun.tsx -------------------------------------------------------------------------------- /src/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/Modal.tsx -------------------------------------------------------------------------------- /src/components/MultiSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/MultiSelect.tsx -------------------------------------------------------------------------------- /src/components/MultiSelectCreatable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/MultiSelectCreatable.tsx -------------------------------------------------------------------------------- /src/components/RadioButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/RadioButton.tsx -------------------------------------------------------------------------------- /src/components/RadioGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/RadioGroup.tsx -------------------------------------------------------------------------------- /src/components/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/Select.tsx -------------------------------------------------------------------------------- /src/components/Textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/Textarea.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeALDR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeALDR.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeANON.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeANON.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeCOMM.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeCOMM.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeCOMT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeCOMT.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeCULTR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeCULTR.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeDATE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeDATE.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeECON.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeECON.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeENV.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeENV.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeFILE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeFILE.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeGAME.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeGAME.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeGMB.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeGMB.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeGOVT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeGOVT.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeGRP.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeGRP.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeHACK.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeHACK.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeHATE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeHATE.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeHOST.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeHOST.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeHUMR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeHUMR.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeIGO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeIGO.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeLGBT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeLGBT.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeMILX.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeMILX.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeMISC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeMISC.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeMMED.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeMMED.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeNEWS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeNEWS.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodePOLR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodePOLR.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodePORN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodePORN.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodePROV.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodePROV.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodePUBH.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodePUBH.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeREL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeREL.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeSRCH.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeSRCH.tsx -------------------------------------------------------------------------------- /src/components/icons/CategoryCodeXED.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/CategoryCodeXED.tsx -------------------------------------------------------------------------------- /src/components/icons/Cross.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/Cross.tsx -------------------------------------------------------------------------------- /src/components/icons/NettestFacebookMessenger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/NettestFacebookMessenger.tsx -------------------------------------------------------------------------------- /src/components/icons/NettestGroupCircumvention.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/NettestGroupCircumvention.tsx -------------------------------------------------------------------------------- /src/components/icons/NettestGroupExperimental.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/NettestGroupExperimental.tsx -------------------------------------------------------------------------------- /src/components/icons/NettestGroupInstantMessaging.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/NettestGroupInstantMessaging.tsx -------------------------------------------------------------------------------- /src/components/icons/NettestGroupMiddleBoxes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/NettestGroupMiddleBoxes.tsx -------------------------------------------------------------------------------- /src/components/icons/NettestGroupPerformance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/NettestGroupPerformance.tsx -------------------------------------------------------------------------------- /src/components/icons/NettestGroupWebsites.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/NettestGroupWebsites.tsx -------------------------------------------------------------------------------- /src/components/icons/NettestPsiphon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/NettestPsiphon.tsx -------------------------------------------------------------------------------- /src/components/icons/NettestRiseupVPN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/NettestRiseupVPN.tsx -------------------------------------------------------------------------------- /src/components/icons/NettestSignal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/NettestSignal.tsx -------------------------------------------------------------------------------- /src/components/icons/NettestTelegram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/NettestTelegram.tsx -------------------------------------------------------------------------------- /src/components/icons/NettestTor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/NettestTor.tsx -------------------------------------------------------------------------------- /src/components/icons/NettestVanillaTor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/NettestVanillaTor.tsx -------------------------------------------------------------------------------- /src/components/icons/NettestWhatsApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/NettestWhatsApp.tsx -------------------------------------------------------------------------------- /src/components/icons/Tick.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/Tick.tsx -------------------------------------------------------------------------------- /src/components/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/components/icons/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/tailwind.css -------------------------------------------------------------------------------- /src/theme/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/theme/colors.ts -------------------------------------------------------------------------------- /src/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/theme/index.ts -------------------------------------------------------------------------------- /src/types/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/src/types/svg.d.ts -------------------------------------------------------------------------------- /stories/Brand.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/Brand.mdx -------------------------------------------------------------------------------- /stories/Buttons.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/Buttons.mdx -------------------------------------------------------------------------------- /stories/Checkbox.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/Checkbox.stories.tsx -------------------------------------------------------------------------------- /stories/Colors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/Colors.mdx -------------------------------------------------------------------------------- /stories/GettingStarted.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/GettingStarted.mdx -------------------------------------------------------------------------------- /stories/IconButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/IconButton.stories.tsx -------------------------------------------------------------------------------- /stories/Input.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/Input.stories.tsx -------------------------------------------------------------------------------- /stories/Introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/Introduction.mdx -------------------------------------------------------------------------------- /stories/LogoOONIRun.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/LogoOONIRun.stories.tsx -------------------------------------------------------------------------------- /stories/Modal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/Modal.stories.tsx -------------------------------------------------------------------------------- /stories/MultiSelect.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/MultiSelect.stories.tsx -------------------------------------------------------------------------------- /stories/MultiSelectCreatable.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/MultiSelectCreatable.stories.tsx -------------------------------------------------------------------------------- /stories/OONIIcons.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/OONIIcons.stories.tsx -------------------------------------------------------------------------------- /stories/RadioButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/RadioButton.stories.tsx -------------------------------------------------------------------------------- /stories/RadioGroup.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/RadioGroup.stories.tsx -------------------------------------------------------------------------------- /stories/Select.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/Select.stories.tsx -------------------------------------------------------------------------------- /stories/Textarea.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/Textarea.stories.tsx -------------------------------------------------------------------------------- /stories/assets/XXX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/assets/XXX.svg -------------------------------------------------------------------------------- /stories/assets/code-brackets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/assets/code-brackets.svg -------------------------------------------------------------------------------- /stories/assets/colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/assets/colors.svg -------------------------------------------------------------------------------- /stories/assets/comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/assets/comments.svg -------------------------------------------------------------------------------- /stories/assets/direction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/assets/direction.svg -------------------------------------------------------------------------------- /stories/assets/donts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/assets/donts.svg -------------------------------------------------------------------------------- /stories/assets/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/assets/flow.svg -------------------------------------------------------------------------------- /stories/assets/minimum-spacing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/assets/minimum-spacing.svg -------------------------------------------------------------------------------- /stories/assets/ooni-logo-uses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/assets/ooni-logo-uses.svg -------------------------------------------------------------------------------- /stories/assets/plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/assets/plugin.svg -------------------------------------------------------------------------------- /stories/assets/repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/assets/repo.svg -------------------------------------------------------------------------------- /stories/assets/stackalt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/assets/stackalt.svg -------------------------------------------------------------------------------- /stories/assets/sub-brands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/assets/sub-brands.svg -------------------------------------------------------------------------------- /stories/components/ColorPalette.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/stories/components/ColorPalette.tsx -------------------------------------------------------------------------------- /svgs/banners/PoweredByOONIColorLightBackground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/banners/PoweredByOONIColorLightBackground.svg -------------------------------------------------------------------------------- /svgs/banners/PoweredByOONIMonochromeDarkBackground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/banners/PoweredByOONIMonochromeDarkBackground.svg -------------------------------------------------------------------------------- /svgs/banners/PoweredByOONIMonochromeLightBackground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/banners/PoweredByOONIMonochromeLightBackground.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeALDR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeALDR.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeANON.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeANON.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeCOMM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeCOMM.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeCOMT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeCOMT.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeCULTR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeCULTR.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeDATE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeDATE.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeECON.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeECON.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeENV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeENV.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeFILE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeFILE.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeGAME.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeGAME.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeGMB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeGMB.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeGOVT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeGOVT.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeGRP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeGRP.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeHACK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeHACK.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeHATE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeHATE.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeHOST.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeHOST.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeHUMR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeHUMR.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeIGO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeIGO.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeLGBT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeLGBT.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeMILX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeMILX.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeMISC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeMISC.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeMMED.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeMMED.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeNEWS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeNEWS.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodePOLR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodePOLR.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodePORN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodePORN.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodePROV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodePROV.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodePUBH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodePUBH.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeREL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeREL.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeSRCH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeSRCH.svg -------------------------------------------------------------------------------- /svgs/icons/CategoryCodeXED.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/CategoryCodeXED.svg -------------------------------------------------------------------------------- /svgs/icons/Cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/Cross.svg -------------------------------------------------------------------------------- /svgs/icons/NettestFacebookMessenger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/NettestFacebookMessenger.svg -------------------------------------------------------------------------------- /svgs/icons/NettestGroupCircumvention.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/NettestGroupCircumvention.svg -------------------------------------------------------------------------------- /svgs/icons/NettestGroupExperimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/NettestGroupExperimental.svg -------------------------------------------------------------------------------- /svgs/icons/NettestGroupInstantMessaging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/NettestGroupInstantMessaging.svg -------------------------------------------------------------------------------- /svgs/icons/NettestGroupMiddleBoxes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/NettestGroupMiddleBoxes.svg -------------------------------------------------------------------------------- /svgs/icons/NettestGroupPerformance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/NettestGroupPerformance.svg -------------------------------------------------------------------------------- /svgs/icons/NettestGroupWebsites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/NettestGroupWebsites.svg -------------------------------------------------------------------------------- /svgs/icons/NettestPsiphon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/NettestPsiphon.svg -------------------------------------------------------------------------------- /svgs/icons/NettestRiseupVPN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/NettestRiseupVPN.svg -------------------------------------------------------------------------------- /svgs/icons/NettestSignal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/NettestSignal.svg -------------------------------------------------------------------------------- /svgs/icons/NettestTelegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/NettestTelegram.svg -------------------------------------------------------------------------------- /svgs/icons/NettestTor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/NettestTor.svg -------------------------------------------------------------------------------- /svgs/icons/NettestVanillaTor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/NettestVanillaTor.svg -------------------------------------------------------------------------------- /svgs/icons/NettestWhatsApp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/NettestWhatsApp.svg -------------------------------------------------------------------------------- /svgs/icons/Tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/icons/Tick.svg -------------------------------------------------------------------------------- /svgs/logos/API-HorizontalColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/API-HorizontalColor.svg -------------------------------------------------------------------------------- /svgs/logos/API-HorizontalMonochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/API-HorizontalMonochrome.svg -------------------------------------------------------------------------------- /svgs/logos/API-HorizontalMonochromeInverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/API-HorizontalMonochromeInverted.svg -------------------------------------------------------------------------------- /svgs/logos/API-VerticalColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/API-VerticalColor.svg -------------------------------------------------------------------------------- /svgs/logos/API-VerticalMonochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/API-VerticalMonochrome.svg -------------------------------------------------------------------------------- /svgs/logos/API-VerticalMonochromeInverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/API-VerticalMonochromeInverted.svg -------------------------------------------------------------------------------- /svgs/logos/Explorer-HorizontalColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Explorer-HorizontalColor.svg -------------------------------------------------------------------------------- /svgs/logos/Explorer-HorizontalMonochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Explorer-HorizontalMonochrome.svg -------------------------------------------------------------------------------- /svgs/logos/Explorer-HorizontalMonochromeInverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Explorer-HorizontalMonochromeInverted.svg -------------------------------------------------------------------------------- /svgs/logos/Explorer-VerticalColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Explorer-VerticalColor.svg -------------------------------------------------------------------------------- /svgs/logos/Explorer-VerticalMonochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Explorer-VerticalMonochrome.svg -------------------------------------------------------------------------------- /svgs/logos/Explorer-VerticalMonochromeInverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Explorer-VerticalMonochromeInverted.svg -------------------------------------------------------------------------------- /svgs/logos/Icon-Color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Icon-Color.svg -------------------------------------------------------------------------------- /svgs/logos/Icon-Inverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Icon-Inverted.svg -------------------------------------------------------------------------------- /svgs/logos/Icon-Monochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Icon-Monochrome.svg -------------------------------------------------------------------------------- /svgs/logos/OONI-HorizontalColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/OONI-HorizontalColor.svg -------------------------------------------------------------------------------- /svgs/logos/OONI-HorizontalMonochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/OONI-HorizontalMonochrome.svg -------------------------------------------------------------------------------- /svgs/logos/OONI-HorizontalMonochromeInverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/OONI-HorizontalMonochromeInverted.svg -------------------------------------------------------------------------------- /svgs/logos/OONI-VerticalColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/OONI-VerticalColor.svg -------------------------------------------------------------------------------- /svgs/logos/OONI-VerticalMonochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/OONI-VerticalMonochrome.svg -------------------------------------------------------------------------------- /svgs/logos/OONI-VerticalMonochromeInverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/OONI-VerticalMonochromeInverted.svg -------------------------------------------------------------------------------- /svgs/logos/Pipeline-HorizontalColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Pipeline-HorizontalColor.svg -------------------------------------------------------------------------------- /svgs/logos/Pipeline-HorizontalMonochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Pipeline-HorizontalMonochrome.svg -------------------------------------------------------------------------------- /svgs/logos/Pipeline-HorizontalMonochromeInverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Pipeline-HorizontalMonochromeInverted.svg -------------------------------------------------------------------------------- /svgs/logos/Pipeline-VerticalColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Pipeline-VerticalColor.svg -------------------------------------------------------------------------------- /svgs/logos/Pipeline-VerticalMonochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Pipeline-VerticalMonochrome.svg -------------------------------------------------------------------------------- /svgs/logos/Pipeline-VerticalMonochromeInverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Pipeline-VerticalMonochromeInverted.svg -------------------------------------------------------------------------------- /svgs/logos/Probe-HorizontalColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Probe-HorizontalColor.svg -------------------------------------------------------------------------------- /svgs/logos/Probe-HorizontalMonochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Probe-HorizontalMonochrome.svg -------------------------------------------------------------------------------- /svgs/logos/Probe-HorizontalMonochromeInverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Probe-HorizontalMonochromeInverted.svg -------------------------------------------------------------------------------- /svgs/logos/Probe-VerticalColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Probe-VerticalColor.svg -------------------------------------------------------------------------------- /svgs/logos/Probe-VerticalMonochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Probe-VerticalMonochrome.svg -------------------------------------------------------------------------------- /svgs/logos/Probe-VerticalMonochromeInverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Probe-VerticalMonochromeInverted.svg -------------------------------------------------------------------------------- /svgs/logos/Proteus-HorizontalColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Proteus-HorizontalColor.svg -------------------------------------------------------------------------------- /svgs/logos/Proteus-HorizontalMonochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Proteus-HorizontalMonochrome.svg -------------------------------------------------------------------------------- /svgs/logos/Proteus-HorizontalMonochromeInverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Proteus-HorizontalMonochromeInverted.svg -------------------------------------------------------------------------------- /svgs/logos/Proteus-VerticalColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Proteus-VerticalColor.svg -------------------------------------------------------------------------------- /svgs/logos/Proteus-VerticalMonochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Proteus-VerticalMonochrome.svg -------------------------------------------------------------------------------- /svgs/logos/Proteus-VerticalMonochromeInverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Proteus-VerticalMonochromeInverted.svg -------------------------------------------------------------------------------- /svgs/logos/Run-HorizontalColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Run-HorizontalColor.svg -------------------------------------------------------------------------------- /svgs/logos/Run-HorizontalMonochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Run-HorizontalMonochrome.svg -------------------------------------------------------------------------------- /svgs/logos/Run-HorizontalMonochromeInverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Run-HorizontalMonochromeInverted.svg -------------------------------------------------------------------------------- /svgs/logos/Run-VerticalColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Run-VerticalColor.svg -------------------------------------------------------------------------------- /svgs/logos/Run-VerticalMonochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Run-VerticalMonochrome.svg -------------------------------------------------------------------------------- /svgs/logos/Run-VerticalMonochromeInverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Run-VerticalMonochromeInverted.svg -------------------------------------------------------------------------------- /svgs/logos/Sync-HorizontalColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Sync-HorizontalColor.svg -------------------------------------------------------------------------------- /svgs/logos/Sync-HorizontalMonochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Sync-HorizontalMonochrome.svg -------------------------------------------------------------------------------- /svgs/logos/Sync-HorizontalMonochromeInverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Sync-HorizontalMonochromeInverted.svg -------------------------------------------------------------------------------- /svgs/logos/Sync-VerticalColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Sync-VerticalColor.svg -------------------------------------------------------------------------------- /svgs/logos/Sync-VerticalMonochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Sync-VerticalMonochrome.svg -------------------------------------------------------------------------------- /svgs/logos/Sync-VerticalMonochromeInverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/logos/Sync-VerticalMonochromeInverted.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-hypnotic-octopus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-hypnotic-octopus.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/Readme.md -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/nettests/InstantMessagingColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/nettests/InstantMessagingColor.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/nettests/InstantMessagingWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/nettests/InstantMessagingWhite.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/nettests/MiddleboxesColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/nettests/MiddleboxesColor.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/nettests/MiddleboxesWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/nettests/MiddleboxesWhite.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/nettests/PerformanceColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/nettests/PerformanceColor.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/nettests/PerformanceWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/nettests/PerformanceWhite.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/nettests/WebsitesColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/nettests/WebsitesColor.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/nettests/WebsitesWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/nettests/WebsitesWhite.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/network-censorship/censorhip-tampering.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/network-censorship/censorhip-tampering.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/network-censorship/censorhip-vendor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/network-censorship/censorhip-vendor.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/network-censorship/censorship-confirmed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/network-censorship/censorship-confirmed.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/network-interference/analysis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/network-interference/analysis.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/network-interference/country-statistics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/network-interference/country-statistics.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/network-interference/measurement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/network-interference/measurement.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/network-interference/progress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/network-interference/progress.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/network-interference/research.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/network-interference/research.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/network-interference/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/network-interference/server.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/network-interference/tor-hollow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/network-interference/tor-hollow.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/network-interference/tor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/network-interference/tor.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/networks-and-protocols/centralization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/networks-and-protocols/centralization.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/networks-and-protocols/decentralization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/networks-and-protocols/decentralization.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/networks-and-protocols/distributed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/networks-and-protocols/distributed.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/networks-and-protocols/http-body.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/networks-and-protocols/http-body.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/networks-and-protocols/http-headers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/networks-and-protocols/http-headers.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/ooni-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/ooni-icons.eot -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/ooni-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/ooni-icons.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/ooni-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/ooni-icons.ttf -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/ooni-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/ooni-icons.woff -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/AlcoholDrugs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/AlcoholDrugs.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/Anonymization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/Anonymization.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/CommunicationTools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/CommunicationTools.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/ControlContent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/ControlContent.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/Culture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/Culture.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/ECommerce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/ECommerce.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/Economics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/Economics.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/Environment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/Environment.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/FileSharing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/FileSharing.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/Gambling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/Gambling.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/Gaming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/Gaming.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/Government.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/Government.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/HackingTools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/HackingTools.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/HateSpeech.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/HateSpeech.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/HostingPlatforms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/HostingPlatforms.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/HumanRightsIssues.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/HumanRightsIssues.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/IntergovernmentalOrganizations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/IntergovernmentalOrganizations.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/LGBT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/LGBT.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/MediaSharing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/MediaSharing.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/NewsMedia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/NewsMedia.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/OnlineDating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/OnlineDating.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/PoliticalCriticism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/PoliticalCriticism.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/Pornography.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/Pornography.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/ProvocativeAttire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/ProvocativeAttire.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/PublicHealth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/PublicHealth.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/Religion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/Religion.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/SearchEngines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/SearchEngines.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/SexEducation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/SexEducation.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/SocialNetworking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/SocialNetworking.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-icons/website-categories/TerrorismMilitants.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-icons/website-categories/TerrorismMilitants.svg -------------------------------------------------------------------------------- /svgs/to-migrate/ooni-logo-wordmark-horiz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/svgs/to-migrate/ooni-logo-wordmark-horiz.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooni/design-system/HEAD/yarn.lock --------------------------------------------------------------------------------