├── .circleci └── config.yml ├── .codeclimate.yml ├── .gitignore ├── .storybook ├── addons.js ├── config.js └── webpack.config.js ├── LICENSE ├── README.md ├── __mocks__ ├── react.js └── styleMock.js ├── jest.config.js ├── package.json ├── scripts └── build-tailwind │ ├── postcss.config.js │ └── tailwind.css ├── setupTests.ts ├── src ├── AutoSizer │ └── index.tsx ├── CodeEditor │ ├── __tests__ │ │ └── Editor.spec.tsx │ ├── index.tsx │ └── utils │ │ └── highlightCode.ts ├── CodeViewer │ ├── __tests__ │ │ └── Viewer.spec.tsx │ ├── index.tsx │ └── utils │ │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── astToReact.spec.ts.snap │ │ │ └── lineNumberify.spec.ts.snap │ │ ├── astToReact.spec.ts │ │ ├── fixtures │ │ │ ├── clike.json │ │ │ ├── javascript.json │ │ │ ├── multiple-lines.json │ │ │ └── one-liner.json │ │ ├── lineNumberify.spec.ts │ │ └── parseCode.spec.ts │ │ ├── astToReact.ts │ │ ├── lineNumberify.ts │ │ └── parseCode.ts ├── Dropdown │ └── Dropdown.tsx ├── FormButton │ └── index.tsx ├── FormError │ └── index.tsx ├── FormInput │ └── index.tsx ├── Icons │ └── index.ts ├── ScrollContainer │ ├── __tests__ │ │ └── ScrollContainer.spec.tsx │ └── index.tsx ├── ScrollList │ └── index.tsx ├── SecretInput │ └── index.tsx ├── Select │ └── index.ts ├── SimpleTabs │ ├── Tab.tsx │ ├── TabList.tsx │ ├── TabPanel.tsx │ └── index.tsx ├── TableOfContents │ ├── index.tsx │ └── types.ts ├── ThemeContainer │ └── index.tsx ├── __fixtures__ │ └── table-of-contents │ │ └── studio.ts ├── __stories__ │ ├── AutoSizer │ │ └── index.tsx │ ├── Checkbox │ │ └── index.tsx │ ├── Code │ │ ├── CodeEditor.tsx │ │ ├── CodeViewer.tsx │ │ └── index.ts │ ├── Docs │ │ ├── Classes.tsx │ │ ├── Namespaces.tsx │ │ ├── Theme.tsx │ │ ├── _theme-namespace.scss │ │ ├── _theme-overwrite.scss │ │ └── index.tsx │ ├── Dropdown │ │ └── index.tsx │ ├── FormInput │ │ └── index.tsx │ ├── ScrollContainer │ │ └── index.tsx │ ├── ScrollList │ │ └── index.tsx │ ├── SecretInput │ │ └── index.tsx │ ├── SimpleTabs │ │ └── index.tsx │ ├── TableOfContents │ │ └── index.tsx │ ├── Toaster │ │ └── index.tsx │ ├── _utils.ts │ └── index.ts ├── _hooks │ ├── useIsMobile.ts │ └── useValidateSchema.ts ├── classes.ts ├── colors.ts ├── index.ts ├── styles │ ├── _ui-kit.scss │ ├── blueprint │ │ ├── _base.scss │ │ ├── _icons.scss │ │ └── _variables.scss │ ├── common │ │ ├── _theme.scss │ │ ├── _utils.scss │ │ └── _variables.scss │ ├── components │ │ ├── Code │ │ │ ├── _base.scss │ │ │ ├── _theme-dark.scss │ │ │ └── _theme-light.scss │ │ ├── Dialog │ │ │ └── _base.scss │ │ ├── Dropdown │ │ │ └── _base.scss │ │ ├── FormGroup │ │ │ └── _base.scss │ │ ├── ScrollContainer │ │ │ └── _base.scss │ │ ├── SimpleTabs │ │ │ └── _base.scss │ │ ├── TableOfContents │ │ │ └── _base.scss │ │ └── _base.scss │ ├── fonts │ │ ├── icons-16.eot │ │ ├── icons-16.ttf │ │ ├── icons-16.woff │ │ ├── icons-20.eot │ │ ├── icons-20.ttf │ │ ├── icons-20.woff │ │ └── icons.json │ ├── icons │ │ ├── 16px │ │ │ ├── add-column-left.svg │ │ │ ├── add-column-right.svg │ │ │ ├── add-row-bottom.svg │ │ │ ├── add-row-top.svg │ │ │ ├── add-to-artifact.svg │ │ │ ├── add-to-folder.svg │ │ │ ├── add.svg │ │ │ ├── airplane.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── alignment-bottom.svg │ │ │ ├── alignment-horizontal-center.svg │ │ │ ├── alignment-left.svg │ │ │ ├── alignment-right.svg │ │ │ ├── alignment-top.svg │ │ │ ├── alignment-vertical-center.svg │ │ │ ├── annotation.svg │ │ │ ├── application.svg │ │ │ ├── applications.svg │ │ │ ├── arrow-bottom-left.svg │ │ │ ├── arrow-bottom-right.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-top-left.svg │ │ │ ├── arrow-top-right.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrows-horizontal.svg │ │ │ ├── arrows-vertical.svg │ │ │ ├── asterisk.svg │ │ │ ├── automatic-updates.svg │ │ │ ├── badge.svg │ │ │ ├── ban-circle.svg │ │ │ ├── bank-account.svg │ │ │ ├── barcode.svg │ │ │ ├── blank.svg │ │ │ ├── blocked-person.svg │ │ │ ├── bold.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── box.svg │ │ │ ├── briefcase.svg │ │ │ ├── build.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar.svg │ │ │ ├── camera.svg │ │ │ ├── caret-down.svg │ │ │ ├── caret-left.svg │ │ │ ├── caret-right.svg │ │ │ ├── caret-up.svg │ │ │ ├── cell-tower.svg │ │ │ ├── changes.svg │ │ │ ├── chart.svg │ │ │ ├── chat.svg │ │ │ ├── chevron-backward.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-forward.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── circle-arrow-down.svg │ │ │ ├── circle-arrow-left.svg │ │ │ ├── circle-arrow-right.svg │ │ │ ├── circle-arrow-up.svg │ │ │ ├── circle.svg │ │ │ ├── citation.svg │ │ │ ├── clean.svg │ │ │ ├── clipboard.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cloud.svg │ │ │ ├── code-block.svg │ │ │ ├── code.svg │ │ │ ├── cog.svg │ │ │ ├── collapse-all.svg │ │ │ ├── column-layout.svg │ │ │ ├── comment.svg │ │ │ ├── comparison.svg │ │ │ ├── compass.svg │ │ │ ├── compressed.svg │ │ │ ├── confirm.svg │ │ │ ├── console.svg │ │ │ ├── contrast.svg │ │ │ ├── control.svg │ │ │ ├── credit-card.svg │ │ │ ├── cross.svg │ │ │ ├── crown.svg │ │ │ ├── cube-add.svg │ │ │ ├── cube-remove.svg │ │ │ ├── cube.svg │ │ │ ├── curved-range-chart.svg │ │ │ ├── cut.svg │ │ │ ├── dashboard.svg │ │ │ ├── database.svg │ │ │ ├── delete.svg │ │ │ ├── delta.svg │ │ │ ├── derive-column.svg │ │ │ ├── desktop.svg │ │ │ ├── diagram-tree.svg │ │ │ ├── direction-left.svg │ │ │ ├── direction-right.svg │ │ │ ├── disable.svg │ │ │ ├── document-open.svg │ │ │ ├── document-share.svg │ │ │ ├── document.svg │ │ │ ├── dollar.svg │ │ │ ├── dot.svg │ │ │ ├── double-caret-horizontal.svg │ │ │ ├── double-caret-vertical.svg │ │ │ ├── double-chevron-down.svg │ │ │ ├── double-chevron-left.svg │ │ │ ├── double-chevron-right.svg │ │ │ ├── double-chevron-up.svg │ │ │ ├── doughnut-chart.svg │ │ │ ├── download.svg │ │ │ ├── drag-handle-horizontal.svg │ │ │ ├── drag-handle-vertical.svg │ │ │ ├── draw.svg │ │ │ ├── drive-time.svg │ │ │ ├── duplicate.svg │ │ │ ├── edit.svg │ │ │ ├── eject.svg │ │ │ ├── endorsed.svg │ │ │ ├── envelope.svg │ │ │ ├── eraser.svg │ │ │ ├── error.svg │ │ │ ├── euro.svg │ │ │ ├── exchange.svg │ │ │ ├── exclude-row.svg │ │ │ ├── expand-all.svg │ │ │ ├── export.svg │ │ │ ├── eye-off.svg │ │ │ ├── eye-on.svg │ │ │ ├── eye-open.svg │ │ │ ├── fast-backward.svg │ │ │ ├── fast-forward.svg │ │ │ ├── feed-subscribed.svg │ │ │ ├── feed.svg │ │ │ ├── film.svg │ │ │ ├── filter-keep.svg │ │ │ ├── filter-list.svg │ │ │ ├── filter-remove.svg │ │ │ ├── filter.svg │ │ │ ├── flag.svg │ │ │ ├── flame.svg │ │ │ ├── flash.svg │ │ │ ├── floppy-disk.svg │ │ │ ├── flow-branch.svg │ │ │ ├── flow-end.svg │ │ │ ├── flow-linear.svg │ │ │ ├── flow-review-branch.svg │ │ │ ├── flow-review.svg │ │ │ ├── flows.svg │ │ │ ├── folder-close.svg │ │ │ ├── folder-new.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-shared-open.svg │ │ │ ├── folder-shared.svg │ │ │ ├── follower.svg │ │ │ ├── following.svg │ │ │ ├── font.svg │ │ │ ├── fork.svg │ │ │ ├── form.svg │ │ │ ├── full-circle.svg │ │ │ ├── full-stacked-chart.svg │ │ │ ├── fullscreen.svg │ │ │ ├── function.svg │ │ │ ├── gantt-chart.svg │ │ │ ├── geolocation.svg │ │ │ ├── geosearch.svg │ │ │ ├── git-branch.svg │ │ │ ├── git-commit.svg │ │ │ ├── git-merge.svg │ │ │ ├── git-new-branch.svg │ │ │ ├── git-pull.svg │ │ │ ├── git-push.svg │ │ │ ├── git-repo.svg │ │ │ ├── glass.svg │ │ │ ├── globe-network.svg │ │ │ ├── globe.svg │ │ │ ├── graph-remove.svg │ │ │ ├── graph.svg │ │ │ ├── grid-view.svg │ │ │ ├── grid.svg │ │ │ ├── group-objects.svg │ │ │ ├── grouped-bar-chart.svg │ │ │ ├── hand-down.svg │ │ │ ├── hand-left.svg │ │ │ ├── hand-right.svg │ │ │ ├── hand-up.svg │ │ │ ├── hand.svg │ │ │ ├── header-one.svg │ │ │ ├── header-two.svg │ │ │ ├── header.svg │ │ │ ├── headset.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart.svg │ │ │ ├── heat-grid.svg │ │ │ ├── heatmap.svg │ │ │ ├── help.svg │ │ │ ├── helper-management.svg │ │ │ ├── highlight.svg │ │ │ ├── history.svg │ │ │ ├── home.svg │ │ │ ├── horizontal-bar-chart-asc.svg │ │ │ ├── horizontal-bar-chart-desc.svg │ │ │ ├── horizontal-bar-chart.svg │ │ │ ├── horizontal-distribution.svg │ │ │ ├── id-number.svg │ │ │ ├── image-rotate-left.svg │ │ │ ├── image-rotate-right.svg │ │ │ ├── import.svg │ │ │ ├── inbox-filtered.svg │ │ │ ├── inbox-geo.svg │ │ │ ├── inbox-search.svg │ │ │ ├── inbox-update.svg │ │ │ ├── inbox.svg │ │ │ ├── info-sign.svg │ │ │ ├── inner-join.svg │ │ │ ├── insert.svg │ │ │ ├── intersection.svg │ │ │ ├── ip-address.svg │ │ │ ├── issue-closed.svg │ │ │ ├── issue-new.svg │ │ │ ├── issue.svg │ │ │ ├── italic.svg │ │ │ ├── join-table.svg │ │ │ ├── key-backspace.svg │ │ │ ├── key-command.svg │ │ │ ├── key-control.svg │ │ │ ├── key-delete.svg │ │ │ ├── key-enter.svg │ │ │ ├── key-escape.svg │ │ │ ├── key-option.svg │ │ │ ├── key-shift.svg │ │ │ ├── key-tab.svg │ │ │ ├── key.svg │ │ │ ├── known-vehicle.svg │ │ │ ├── label.svg │ │ │ ├── layer.svg │ │ │ ├── layers.svg │ │ │ ├── layout-auto.svg │ │ │ ├── layout-balloon.svg │ │ │ ├── layout-circle.svg │ │ │ ├── layout-grid.svg │ │ │ ├── layout-group-by.svg │ │ │ ├── layout-hierarchy.svg │ │ │ ├── layout-linear.svg │ │ │ ├── layout-skew-grid.svg │ │ │ ├── layout-sorted-clusters.svg │ │ │ ├── layout.svg │ │ │ ├── left-join.svg │ │ │ ├── lifesaver.svg │ │ │ ├── lightbulb.svg │ │ │ ├── link.svg │ │ │ ├── list-columns.svg │ │ │ ├── list-detail-view.svg │ │ │ ├── list.svg │ │ │ ├── locate.svg │ │ │ ├── lock.svg │ │ │ ├── log-in.svg │ │ │ ├── log-out.svg │ │ │ ├── manual.svg │ │ │ ├── manually-entered-data.svg │ │ │ ├── map-create.svg │ │ │ ├── map-marker.svg │ │ │ ├── map.svg │ │ │ ├── maximize.svg │ │ │ ├── media.svg │ │ │ ├── menu-closed.svg │ │ │ ├── menu-open.svg │ │ │ ├── menu.svg │ │ │ ├── merge-columns.svg │ │ │ ├── merge-links.svg │ │ │ ├── minimize.svg │ │ │ ├── minus.svg │ │ │ ├── mobile-phone.svg │ │ │ ├── mobile-video.svg │ │ │ ├── moon.svg │ │ │ ├── more.svg │ │ │ ├── mountain.svg │ │ │ ├── move.svg │ │ │ ├── mugshot.svg │ │ │ ├── multi-select.svg │ │ │ ├── music.svg │ │ │ ├── new-grid-item.svg │ │ │ ├── new-link.svg │ │ │ ├── new-object.svg │ │ │ ├── new-person.svg │ │ │ ├── new-prescription.svg │ │ │ ├── new-text-box.svg │ │ │ ├── ninja.svg │ │ │ ├── notifications-updated.svg │ │ │ ├── notifications.svg │ │ │ ├── numbered-list.svg │ │ │ ├── numerical.svg │ │ │ ├── office.svg │ │ │ ├── offline.svg │ │ │ ├── oil-field.svg │ │ │ ├── one-column.svg │ │ │ ├── outdated.svg │ │ │ ├── page-layout.svg │ │ │ ├── panel-stats.svg │ │ │ ├── panel-table.svg │ │ │ ├── paperclip.svg │ │ │ ├── paragraph.svg │ │ │ ├── path-search.svg │ │ │ ├── path.svg │ │ │ ├── pause.svg │ │ │ ├── people.svg │ │ │ ├── percentage.svg │ │ │ ├── person.svg │ │ │ ├── phone.svg │ │ │ ├── pie-chart.svg │ │ │ ├── pin.svg │ │ │ ├── pivot-table.svg │ │ │ ├── pivot.svg │ │ │ ├── play.svg │ │ │ ├── plus.svg │ │ │ ├── polygon-filter.svg │ │ │ ├── power.svg │ │ │ ├── predictive-analysis.svg │ │ │ ├── prescription.svg │ │ │ ├── presentation.svg │ │ │ ├── print.svg │ │ │ ├── projects.svg │ │ │ ├── properties.svg │ │ │ ├── property.svg │ │ │ ├── publish-function.svg │ │ │ ├── pulse.svg │ │ │ ├── random.svg │ │ │ ├── record.svg │ │ │ ├── redo.svg │ │ │ ├── refresh.svg │ │ │ ├── regression-chart.svg │ │ │ ├── remove-column-left.svg │ │ │ ├── remove-column-right.svg │ │ │ ├── remove-column.svg │ │ │ ├── remove-row-bottom.svg │ │ │ ├── remove-row-top.svg │ │ │ ├── remove.svg │ │ │ ├── repeat.svg │ │ │ ├── resolve.svg │ │ │ ├── rig.svg │ │ │ ├── right-join.svg │ │ │ ├── ring.svg │ │ │ ├── rotate-document.svg │ │ │ ├── rotate-page.svg │ │ │ ├── satellite.svg │ │ │ ├── saved.svg │ │ │ ├── scatter-plot.svg │ │ │ ├── search-around.svg │ │ │ ├── search-template.svg │ │ │ ├── search-text.svg │ │ │ ├── search.svg │ │ │ ├── segmented-control.svg │ │ │ ├── select.svg │ │ │ ├── selection.svg │ │ │ ├── send-to-graph.svg │ │ │ ├── send-to-map.svg │ │ │ ├── send-to.svg │ │ │ ├── series-add.svg │ │ │ ├── series-configuration.svg │ │ │ ├── series-derived.svg │ │ │ ├── series-filtered.svg │ │ │ ├── series-search.svg │ │ │ ├── settings.svg │ │ │ ├── share.svg │ │ │ ├── shield.svg │ │ │ ├── shop.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── sim-card.svg │ │ │ ├── slash.svg │ │ │ ├── small-cross.svg │ │ │ ├── small-minus.svg │ │ │ ├── small-plus.svg │ │ │ ├── small-tick.svg │ │ │ ├── snowflake.svg │ │ │ ├── social-media.svg │ │ │ ├── sort-alphabetical-desc.svg │ │ │ ├── sort-alphabetical.svg │ │ │ ├── sort-asc.svg │ │ │ ├── sort-desc.svg │ │ │ ├── sort-numerical-desc.svg │ │ │ ├── sort-numerical.svg │ │ │ ├── sort.svg │ │ │ ├── split-columns.svg │ │ │ ├── square.svg │ │ │ ├── stacked-chart.svg │ │ │ ├── star-empty.svg │ │ │ ├── star.svg │ │ │ ├── step-backward.svg │ │ │ ├── step-chart.svg │ │ │ ├── step-forward.svg │ │ │ ├── stop.svg │ │ │ ├── strikethrough.svg │ │ │ ├── style.svg │ │ │ ├── swap-horizontal.svg │ │ │ ├── swap-vertical.svg │ │ │ ├── symbol-circle.svg │ │ │ ├── symbol-cross.svg │ │ │ ├── symbol-diamond.svg │ │ │ ├── symbol-square.svg │ │ │ ├── symbol-triangle-down.svg │ │ │ ├── symbol-triangle-up.svg │ │ │ ├── tag.svg │ │ │ ├── take-action.svg │ │ │ ├── taxi.svg │ │ │ ├── text-highlight.svg │ │ │ ├── th-derived.svg │ │ │ ├── th-filtered.svg │ │ │ ├── th-list.svg │ │ │ ├── th.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── tick-circle.svg │ │ │ ├── tick.svg │ │ │ ├── time.svg │ │ │ ├── timeline-area-chart.svg │ │ │ ├── timeline-bar-chart.svg │ │ │ ├── timeline-events.svg │ │ │ ├── timeline-line-chart.svg │ │ │ ├── tint.svg │ │ │ ├── torch.svg │ │ │ ├── train.svg │ │ │ ├── translate.svg │ │ │ ├── trash.svg │ │ │ ├── tree.svg │ │ │ ├── trending-down.svg │ │ │ ├── trending-up.svg │ │ │ ├── two-columns.svg │ │ │ ├── underline.svg │ │ │ ├── undo.svg │ │ │ ├── ungroup-objects.svg │ │ │ ├── unknown-vehicle.svg │ │ │ ├── unlock.svg │ │ │ ├── unpin.svg │ │ │ ├── unresolve.svg │ │ │ ├── updated.svg │ │ │ ├── upload.svg │ │ │ ├── user.svg │ │ │ ├── variable.svg │ │ │ ├── vertical-bar-chart-asc.svg │ │ │ ├── vertical-bar-chart-desc.svg │ │ │ ├── vertical-distribution.svg │ │ │ ├── video.svg │ │ │ ├── volume-down.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-up.svg │ │ │ ├── walk.svg │ │ │ ├── warning-sign.svg │ │ │ ├── waterfall-chart.svg │ │ │ ├── widget-button.svg │ │ │ ├── widget-footer.svg │ │ │ ├── widget-header.svg │ │ │ ├── widget.svg │ │ │ ├── wrench.svg │ │ │ ├── zoom-in.svg │ │ │ ├── zoom-out.svg │ │ │ └── zoom-to-fit.svg │ │ └── 20px │ │ │ ├── add-column-left.svg │ │ │ ├── add-column-right.svg │ │ │ ├── add-row-bottom.svg │ │ │ ├── add-row-top.svg │ │ │ ├── add-to-artifact.svg │ │ │ ├── add-to-folder.svg │ │ │ ├── add.svg │ │ │ ├── airplane.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── alignment-bottom.svg │ │ │ ├── alignment-horizontal-center.svg │ │ │ ├── alignment-left.svg │ │ │ ├── alignment-right.svg │ │ │ ├── alignment-top.svg │ │ │ ├── alignment-vertical-center.svg │ │ │ ├── annotation.svg │ │ │ ├── application.svg │ │ │ ├── applications.svg │ │ │ ├── arrow-bottom-left.svg │ │ │ ├── arrow-bottom-right.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-top-left.svg │ │ │ ├── arrow-top-right.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrows-horizontal.svg │ │ │ ├── arrows-vertical.svg │ │ │ ├── asterisk.svg │ │ │ ├── automatic-updates.svg │ │ │ ├── badge.svg │ │ │ ├── ban-circle.svg │ │ │ ├── bank-account.svg │ │ │ ├── barcode.svg │ │ │ ├── blank.svg │ │ │ ├── blocked-person.svg │ │ │ ├── bold.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── box.svg │ │ │ ├── briefcase.svg │ │ │ ├── build.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar.svg │ │ │ ├── camera.svg │ │ │ ├── caret-down.svg │ │ │ ├── caret-left.svg │ │ │ ├── caret-right.svg │ │ │ ├── caret-up.svg │ │ │ ├── cell-tower.svg │ │ │ ├── changes.svg │ │ │ ├── chart.svg │ │ │ ├── chat.svg │ │ │ ├── chevron-backward.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-forward.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── circle-arrow-down.svg │ │ │ ├── circle-arrow-left.svg │ │ │ ├── circle-arrow-right.svg │ │ │ ├── circle-arrow-up.svg │ │ │ ├── circle.svg │ │ │ ├── citation.svg │ │ │ ├── clean.svg │ │ │ ├── clipboard.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cloud.svg │ │ │ ├── code-block.svg │ │ │ ├── code.svg │ │ │ ├── cog.svg │ │ │ ├── collapse-all.svg │ │ │ ├── column-layout.svg │ │ │ ├── comment.svg │ │ │ ├── comparison.svg │ │ │ ├── compass.svg │ │ │ ├── compressed.svg │ │ │ ├── confirm.svg │ │ │ ├── console.svg │ │ │ ├── contrast.svg │ │ │ ├── control.svg │ │ │ ├── credit-card.svg │ │ │ ├── cross.svg │ │ │ ├── crown.svg │ │ │ ├── cube-add.svg │ │ │ ├── cube-remove.svg │ │ │ ├── cube.svg │ │ │ ├── curved-range-chart.svg │ │ │ ├── cut.svg │ │ │ ├── dashboard.svg │ │ │ ├── database.svg │ │ │ ├── delete.svg │ │ │ ├── delta.svg │ │ │ ├── derive-column.svg │ │ │ ├── desktop.svg │ │ │ ├── diagram-tree.svg │ │ │ ├── direction-left.svg │ │ │ ├── direction-right.svg │ │ │ ├── disable.svg │ │ │ ├── document-open.svg │ │ │ ├── document-share.svg │ │ │ ├── document.svg │ │ │ ├── dollar.svg │ │ │ ├── dot.svg │ │ │ ├── double-caret-horizontal.svg │ │ │ ├── double-caret-vertical.svg │ │ │ ├── double-chevron-down.svg │ │ │ ├── double-chevron-left.svg │ │ │ ├── double-chevron-right.svg │ │ │ ├── double-chevron-up.svg │ │ │ ├── doughnut-chart.svg │ │ │ ├── download.svg │ │ │ ├── drag-handle-horizontal.svg │ │ │ ├── drag-handle-vertical.svg │ │ │ ├── draw.svg │ │ │ ├── drive-time.svg │ │ │ ├── duplicate.svg │ │ │ ├── edit.svg │ │ │ ├── eject.svg │ │ │ ├── endorsed.svg │ │ │ ├── envelope.svg │ │ │ ├── eraser.svg │ │ │ ├── error.svg │ │ │ ├── euro.svg │ │ │ ├── exchange.svg │ │ │ ├── exclude-row.svg │ │ │ ├── expand-all.svg │ │ │ ├── export.svg │ │ │ ├── eye-off.svg │ │ │ ├── eye-on.svg │ │ │ ├── eye-open.svg │ │ │ ├── fast-backward.svg │ │ │ ├── fast-forward.svg │ │ │ ├── feed-subscribed.svg │ │ │ ├── feed.svg │ │ │ ├── film.svg │ │ │ ├── filter-keep.svg │ │ │ ├── filter-list.svg │ │ │ ├── filter-remove.svg │ │ │ ├── filter.svg │ │ │ ├── flag.svg │ │ │ ├── flame.svg │ │ │ ├── flash.svg │ │ │ ├── floppy-disk.svg │ │ │ ├── flow-branch.svg │ │ │ ├── flow-end.svg │ │ │ ├── flow-linear.svg │ │ │ ├── flow-review-branch.svg │ │ │ ├── flow-review.svg │ │ │ ├── flows.svg │ │ │ ├── folder-close.svg │ │ │ ├── folder-new.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-shared-open.svg │ │ │ ├── folder-shared.svg │ │ │ ├── follower.svg │ │ │ ├── following.svg │ │ │ ├── font.svg │ │ │ ├── fork.svg │ │ │ ├── form.svg │ │ │ ├── full-circle.svg │ │ │ ├── full-stacked-chart.svg │ │ │ ├── fullscreen.svg │ │ │ ├── function.svg │ │ │ ├── gantt-chart.svg │ │ │ ├── geolocation.svg │ │ │ ├── geosearch.svg │ │ │ ├── git-branch.svg │ │ │ ├── git-commit.svg │ │ │ ├── git-merge.svg │ │ │ ├── git-new-branch.svg │ │ │ ├── git-pull.svg │ │ │ ├── git-push.svg │ │ │ ├── git-repo.svg │ │ │ ├── glass.svg │ │ │ ├── globe-network.svg │ │ │ ├── globe.svg │ │ │ ├── graph-remove.svg │ │ │ ├── graph.svg │ │ │ ├── grid-view.svg │ │ │ ├── grid.svg │ │ │ ├── group-objects.svg │ │ │ ├── grouped-bar-chart.svg │ │ │ ├── hand-down.svg │ │ │ ├── hand-left.svg │ │ │ ├── hand-right.svg │ │ │ ├── hand-up.svg │ │ │ ├── hand.svg │ │ │ ├── header-one.svg │ │ │ ├── header-two.svg │ │ │ ├── header.svg │ │ │ ├── headset.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart.svg │ │ │ ├── heat-grid.svg │ │ │ ├── heatmap.svg │ │ │ ├── help.svg │ │ │ ├── helper-management.svg │ │ │ ├── highlight.svg │ │ │ ├── history.svg │ │ │ ├── home.svg │ │ │ ├── horizontal-bar-chart-asc.svg │ │ │ ├── horizontal-bar-chart-desc.svg │ │ │ ├── horizontal-bar-chart.svg │ │ │ ├── horizontal-distribution.svg │ │ │ ├── id-number.svg │ │ │ ├── image-rotate-left.svg │ │ │ ├── image-rotate-right.svg │ │ │ ├── import.svg │ │ │ ├── inbox-filtered.svg │ │ │ ├── inbox-geo.svg │ │ │ ├── inbox-search.svg │ │ │ ├── inbox-update.svg │ │ │ ├── inbox.svg │ │ │ ├── info-sign.svg │ │ │ ├── inner-join.svg │ │ │ ├── insert.svg │ │ │ ├── intersection.svg │ │ │ ├── ip-address.svg │ │ │ ├── issue-closed.svg │ │ │ ├── issue-new.svg │ │ │ ├── issue.svg │ │ │ ├── italic.svg │ │ │ ├── join-table.svg │ │ │ ├── key-backspace.svg │ │ │ ├── key-command.svg │ │ │ ├── key-control.svg │ │ │ ├── key-delete.svg │ │ │ ├── key-enter.svg │ │ │ ├── key-escape.svg │ │ │ ├── key-option.svg │ │ │ ├── key-shift.svg │ │ │ ├── key-tab.svg │ │ │ ├── key.svg │ │ │ ├── known-vehicle.svg │ │ │ ├── label.svg │ │ │ ├── layer.svg │ │ │ ├── layers.svg │ │ │ ├── layout-auto.svg │ │ │ ├── layout-balloon.svg │ │ │ ├── layout-circle.svg │ │ │ ├── layout-grid.svg │ │ │ ├── layout-group-by.svg │ │ │ ├── layout-hierarchy.svg │ │ │ ├── layout-linear.svg │ │ │ ├── layout-skew-grid.svg │ │ │ ├── layout-sorted-clusters.svg │ │ │ ├── layout.svg │ │ │ ├── left-join.svg │ │ │ ├── lifesaver.svg │ │ │ ├── lightbulb.svg │ │ │ ├── link.svg │ │ │ ├── list-columns.svg │ │ │ ├── list-detail-view.svg │ │ │ ├── list.svg │ │ │ ├── locate.svg │ │ │ ├── lock.svg │ │ │ ├── log-in.svg │ │ │ ├── log-out.svg │ │ │ ├── manual.svg │ │ │ ├── manually-entered-data.svg │ │ │ ├── map-create.svg │ │ │ ├── map-marker.svg │ │ │ ├── map.svg │ │ │ ├── maximize.svg │ │ │ ├── media.svg │ │ │ ├── menu-closed.svg │ │ │ ├── menu-open.svg │ │ │ ├── menu.svg │ │ │ ├── merge-columns.svg │ │ │ ├── merge-links.svg │ │ │ ├── minimize.svg │ │ │ ├── minus.svg │ │ │ ├── mobile-phone.svg │ │ │ ├── mobile-video.svg │ │ │ ├── moon.svg │ │ │ ├── more.svg │ │ │ ├── mountain.svg │ │ │ ├── move.svg │ │ │ ├── mugshot.svg │ │ │ ├── multi-select.svg │ │ │ ├── music.svg │ │ │ ├── new-grid-item.svg │ │ │ ├── new-link.svg │ │ │ ├── new-object.svg │ │ │ ├── new-person.svg │ │ │ ├── new-prescription.svg │ │ │ ├── new-text-box.svg │ │ │ ├── ninja.svg │ │ │ ├── notifications-updated.svg │ │ │ ├── notifications.svg │ │ │ ├── numbered-list.svg │ │ │ ├── numerical.svg │ │ │ ├── office.svg │ │ │ ├── offline.svg │ │ │ ├── oil-field.svg │ │ │ ├── one-column.svg │ │ │ ├── outdated.svg │ │ │ ├── page-layout.svg │ │ │ ├── panel-stats.svg │ │ │ ├── panel-table.svg │ │ │ ├── paperclip.svg │ │ │ ├── paragraph.svg │ │ │ ├── path-search.svg │ │ │ ├── path.svg │ │ │ ├── pause.svg │ │ │ ├── people.svg │ │ │ ├── percentage.svg │ │ │ ├── person.svg │ │ │ ├── phone.svg │ │ │ ├── pie-chart.svg │ │ │ ├── pin.svg │ │ │ ├── pivot-table.svg │ │ │ ├── pivot.svg │ │ │ ├── play.svg │ │ │ ├── plus.svg │ │ │ ├── polygon-filter.svg │ │ │ ├── power.svg │ │ │ ├── predictive-analysis.svg │ │ │ ├── prescription.svg │ │ │ ├── presentation.svg │ │ │ ├── print.svg │ │ │ ├── projects.svg │ │ │ ├── properties.svg │ │ │ ├── property.svg │ │ │ ├── publish-function.svg │ │ │ ├── pulse.svg │ │ │ ├── random.svg │ │ │ ├── record.svg │ │ │ ├── redo.svg │ │ │ ├── refresh.svg │ │ │ ├── regression-chart.svg │ │ │ ├── remove-column-left.svg │ │ │ ├── remove-column-right.svg │ │ │ ├── remove-column.svg │ │ │ ├── remove-row-bottom.svg │ │ │ ├── remove-row-top.svg │ │ │ ├── remove.svg │ │ │ ├── repeat.svg │ │ │ ├── resolve.svg │ │ │ ├── rig.svg │ │ │ ├── right-join.svg │ │ │ ├── ring.svg │ │ │ ├── rotate-document.svg │ │ │ ├── rotate-page.svg │ │ │ ├── satellite.svg │ │ │ ├── saved.svg │ │ │ ├── scatter-plot.svg │ │ │ ├── search-around.svg │ │ │ ├── search-template.svg │ │ │ ├── search-text.svg │ │ │ ├── search.svg │ │ │ ├── segmented-control.svg │ │ │ ├── select.svg │ │ │ ├── selection.svg │ │ │ ├── send-to-graph.svg │ │ │ ├── send-to-map.svg │ │ │ ├── send-to.svg │ │ │ ├── series-add.svg │ │ │ ├── series-configuration.svg │ │ │ ├── series-derived.svg │ │ │ ├── series-filtered.svg │ │ │ ├── series-search.svg │ │ │ ├── settings.svg │ │ │ ├── share.svg │ │ │ ├── shield.svg │ │ │ ├── shop.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── sim-card.svg │ │ │ ├── slash.svg │ │ │ ├── small-cross.svg │ │ │ ├── small-minus.svg │ │ │ ├── small-plus.svg │ │ │ ├── small-tick.svg │ │ │ ├── snowflake.svg │ │ │ ├── social-media.svg │ │ │ ├── sort-alphabetical-desc.svg │ │ │ ├── sort-alphabetical.svg │ │ │ ├── sort-asc.svg │ │ │ ├── sort-desc.svg │ │ │ ├── sort-numerical-desc.svg │ │ │ ├── sort-numerical.svg │ │ │ ├── sort.svg │ │ │ ├── split-columns.svg │ │ │ ├── square.svg │ │ │ ├── stacked-chart.svg │ │ │ ├── star-empty.svg │ │ │ ├── star.svg │ │ │ ├── step-backward.svg │ │ │ ├── step-chart.svg │ │ │ ├── step-forward.svg │ │ │ ├── stop.svg │ │ │ ├── strikethrough.svg │ │ │ ├── style.svg │ │ │ ├── swap-horizontal.svg │ │ │ ├── swap-vertical.svg │ │ │ ├── symbol-circle.svg │ │ │ ├── symbol-cross.svg │ │ │ ├── symbol-diamond.svg │ │ │ ├── symbol-square.svg │ │ │ ├── symbol-triangle-down.svg │ │ │ ├── symbol-triangle-up.svg │ │ │ ├── tag.svg │ │ │ ├── take-action.svg │ │ │ ├── taxi.svg │ │ │ ├── text-highlight.svg │ │ │ ├── th-derived.svg │ │ │ ├── th-filtered.svg │ │ │ ├── th-list.svg │ │ │ ├── th.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── tick-circle.svg │ │ │ ├── tick.svg │ │ │ ├── time.svg │ │ │ ├── timeline-area-chart.svg │ │ │ ├── timeline-bar-chart.svg │ │ │ ├── timeline-events.svg │ │ │ ├── timeline-line-chart.svg │ │ │ ├── tint.svg │ │ │ ├── torch.svg │ │ │ ├── train.svg │ │ │ ├── translate.svg │ │ │ ├── trash.svg │ │ │ ├── tree.svg │ │ │ ├── trending-down.svg │ │ │ ├── trending-up.svg │ │ │ ├── two-columns.svg │ │ │ ├── underline.svg │ │ │ ├── undo.svg │ │ │ ├── ungroup-objects.svg │ │ │ ├── unknown-vehicle.svg │ │ │ ├── unlock.svg │ │ │ ├── unpin.svg │ │ │ ├── unresolve.svg │ │ │ ├── updated.svg │ │ │ ├── upload.svg │ │ │ ├── user.svg │ │ │ ├── variable.svg │ │ │ ├── vertical-bar-chart-asc.svg │ │ │ ├── vertical-bar-chart-desc.svg │ │ │ ├── vertical-distribution.svg │ │ │ ├── video.svg │ │ │ ├── volume-down.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-up.svg │ │ │ ├── walk.svg │ │ │ ├── warning-sign.svg │ │ │ ├── waterfall-chart.svg │ │ │ ├── widget-button.svg │ │ │ ├── widget-footer.svg │ │ │ ├── widget-header.svg │ │ │ ├── widget.svg │ │ │ ├── wrench.svg │ │ │ ├── zoom-in.svg │ │ │ ├── zoom-out.svg │ │ │ └── zoom-to-fit.svg │ └── tailwind │ │ ├── _base.scss │ │ └── tailwind.config.js ├── types.ts └── withErrorBoundary.tsx ├── tsconfig.build.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.storybook/addons.js: -------------------------------------------------------------------------------- 1 | import '@stoplight/storybook-config/addons'; 2 | -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/.storybook/config.js -------------------------------------------------------------------------------- /.storybook/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/.storybook/webpack.config.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/__mocks__/react.js -------------------------------------------------------------------------------- /__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build-tailwind/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/scripts/build-tailwind/postcss.config.js -------------------------------------------------------------------------------- /scripts/build-tailwind/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/scripts/build-tailwind/tailwind.css -------------------------------------------------------------------------------- /setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/setupTests.ts -------------------------------------------------------------------------------- /src/AutoSizer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/AutoSizer/index.tsx -------------------------------------------------------------------------------- /src/CodeEditor/__tests__/Editor.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/CodeEditor/__tests__/Editor.spec.tsx -------------------------------------------------------------------------------- /src/CodeEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/CodeEditor/index.tsx -------------------------------------------------------------------------------- /src/CodeEditor/utils/highlightCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/CodeEditor/utils/highlightCode.ts -------------------------------------------------------------------------------- /src/CodeViewer/__tests__/Viewer.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/CodeViewer/__tests__/Viewer.spec.tsx -------------------------------------------------------------------------------- /src/CodeViewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/CodeViewer/index.tsx -------------------------------------------------------------------------------- /src/CodeViewer/utils/astToReact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/CodeViewer/utils/astToReact.ts -------------------------------------------------------------------------------- /src/CodeViewer/utils/lineNumberify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/CodeViewer/utils/lineNumberify.ts -------------------------------------------------------------------------------- /src/CodeViewer/utils/parseCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/CodeViewer/utils/parseCode.ts -------------------------------------------------------------------------------- /src/Dropdown/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/Dropdown/Dropdown.tsx -------------------------------------------------------------------------------- /src/FormButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/FormButton/index.tsx -------------------------------------------------------------------------------- /src/FormError/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/FormError/index.tsx -------------------------------------------------------------------------------- /src/FormInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/FormInput/index.tsx -------------------------------------------------------------------------------- /src/Icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/Icons/index.ts -------------------------------------------------------------------------------- /src/ScrollContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/ScrollContainer/index.tsx -------------------------------------------------------------------------------- /src/ScrollList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/ScrollList/index.tsx -------------------------------------------------------------------------------- /src/SecretInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/SecretInput/index.tsx -------------------------------------------------------------------------------- /src/Select/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@blueprintjs/select'; 2 | -------------------------------------------------------------------------------- /src/SimpleTabs/Tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/SimpleTabs/Tab.tsx -------------------------------------------------------------------------------- /src/SimpleTabs/TabList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/SimpleTabs/TabList.tsx -------------------------------------------------------------------------------- /src/SimpleTabs/TabPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/SimpleTabs/TabPanel.tsx -------------------------------------------------------------------------------- /src/SimpleTabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/SimpleTabs/index.tsx -------------------------------------------------------------------------------- /src/TableOfContents/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/TableOfContents/index.tsx -------------------------------------------------------------------------------- /src/TableOfContents/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/TableOfContents/types.ts -------------------------------------------------------------------------------- /src/ThemeContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/ThemeContainer/index.tsx -------------------------------------------------------------------------------- /src/__stories__/AutoSizer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/AutoSizer/index.tsx -------------------------------------------------------------------------------- /src/__stories__/Checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/Checkbox/index.tsx -------------------------------------------------------------------------------- /src/__stories__/Code/CodeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/Code/CodeEditor.tsx -------------------------------------------------------------------------------- /src/__stories__/Code/CodeViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/Code/CodeViewer.tsx -------------------------------------------------------------------------------- /src/__stories__/Code/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/Code/index.ts -------------------------------------------------------------------------------- /src/__stories__/Docs/Classes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/Docs/Classes.tsx -------------------------------------------------------------------------------- /src/__stories__/Docs/Namespaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/Docs/Namespaces.tsx -------------------------------------------------------------------------------- /src/__stories__/Docs/Theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/Docs/Theme.tsx -------------------------------------------------------------------------------- /src/__stories__/Docs/_theme-namespace.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/Docs/_theme-namespace.scss -------------------------------------------------------------------------------- /src/__stories__/Docs/_theme-overwrite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/Docs/_theme-overwrite.scss -------------------------------------------------------------------------------- /src/__stories__/Docs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/Docs/index.tsx -------------------------------------------------------------------------------- /src/__stories__/Dropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/Dropdown/index.tsx -------------------------------------------------------------------------------- /src/__stories__/FormInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/FormInput/index.tsx -------------------------------------------------------------------------------- /src/__stories__/ScrollContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/ScrollContainer/index.tsx -------------------------------------------------------------------------------- /src/__stories__/ScrollList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/ScrollList/index.tsx -------------------------------------------------------------------------------- /src/__stories__/SecretInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/SecretInput/index.tsx -------------------------------------------------------------------------------- /src/__stories__/SimpleTabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/SimpleTabs/index.tsx -------------------------------------------------------------------------------- /src/__stories__/TableOfContents/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/TableOfContents/index.tsx -------------------------------------------------------------------------------- /src/__stories__/Toaster/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/Toaster/index.tsx -------------------------------------------------------------------------------- /src/__stories__/_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/_utils.ts -------------------------------------------------------------------------------- /src/__stories__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/__stories__/index.ts -------------------------------------------------------------------------------- /src/_hooks/useIsMobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/_hooks/useIsMobile.ts -------------------------------------------------------------------------------- /src/_hooks/useValidateSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/_hooks/useValidateSchema.ts -------------------------------------------------------------------------------- /src/classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/classes.ts -------------------------------------------------------------------------------- /src/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/colors.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/styles/_ui-kit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/_ui-kit.scss -------------------------------------------------------------------------------- /src/styles/blueprint/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/blueprint/_base.scss -------------------------------------------------------------------------------- /src/styles/blueprint/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/blueprint/_icons.scss -------------------------------------------------------------------------------- /src/styles/blueprint/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/blueprint/_variables.scss -------------------------------------------------------------------------------- /src/styles/common/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/common/_theme.scss -------------------------------------------------------------------------------- /src/styles/common/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/common/_utils.scss -------------------------------------------------------------------------------- /src/styles/common/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/common/_variables.scss -------------------------------------------------------------------------------- /src/styles/components/Code/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/components/Code/_base.scss -------------------------------------------------------------------------------- /src/styles/components/Dialog/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/components/Dialog/_base.scss -------------------------------------------------------------------------------- /src/styles/components/Dropdown/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/components/Dropdown/_base.scss -------------------------------------------------------------------------------- /src/styles/components/FormGroup/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/components/FormGroup/_base.scss -------------------------------------------------------------------------------- /src/styles/components/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/components/_base.scss -------------------------------------------------------------------------------- /src/styles/fonts/icons-16.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/fonts/icons-16.eot -------------------------------------------------------------------------------- /src/styles/fonts/icons-16.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/fonts/icons-16.ttf -------------------------------------------------------------------------------- /src/styles/fonts/icons-16.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/fonts/icons-16.woff -------------------------------------------------------------------------------- /src/styles/fonts/icons-20.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/fonts/icons-20.eot -------------------------------------------------------------------------------- /src/styles/fonts/icons-20.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/fonts/icons-20.ttf -------------------------------------------------------------------------------- /src/styles/fonts/icons-20.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/fonts/icons-20.woff -------------------------------------------------------------------------------- /src/styles/fonts/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/fonts/icons.json -------------------------------------------------------------------------------- /src/styles/icons/16px/add-column-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/add-column-left.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/add-column-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/add-column-right.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/add-row-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/add-row-bottom.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/add-row-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/add-row-top.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/add-to-artifact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/add-to-artifact.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/add-to-folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/add-to-folder.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/add.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/airplane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/airplane.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/align-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/align-center.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/align-justify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/align-justify.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/align-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/align-left.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/align-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/align-right.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/alignment-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/alignment-bottom.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/alignment-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/alignment-left.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/alignment-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/alignment-right.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/alignment-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/alignment-top.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/annotation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/annotation.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/application.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/application.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/applications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/applications.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/arrow-down.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/arrow-left.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/arrow-right.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/arrow-top-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/arrow-top-left.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/arrow-top-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/arrow-top-right.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/arrow-up.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/arrows-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/arrows-vertical.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/asterisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/asterisk.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/badge.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/ban-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/ban-circle.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/bank-account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/bank-account.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/barcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/barcode.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/blank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/blank.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/blocked-person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/blocked-person.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/bold.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/book.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/bookmark.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/box.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/briefcase.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/build.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/calculator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/calculator.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/calendar.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/camera.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/caret-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/caret-down.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/caret-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/caret-left.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/caret-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/caret-right.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/caret-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/caret-up.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/cell-tower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/cell-tower.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/changes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/changes.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/chart.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/chat.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/chevron-backward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/chevron-backward.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/chevron-down.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/chevron-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/chevron-forward.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/chevron-left.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/chevron-right.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/chevron-up.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/circle-arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/circle-arrow-up.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/circle.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/citation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/citation.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/clean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/clean.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/clipboard.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/cloud-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/cloud-download.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/cloud-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/cloud-upload.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/cloud.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/code-block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/code-block.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/code.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/cog.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/collapse-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/collapse-all.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/column-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/column-layout.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/comment.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/comparison.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/comparison.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/compass.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/compressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/compressed.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/confirm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/confirm.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/console.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/console.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/contrast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/contrast.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/control.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/control.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/credit-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/credit-card.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/cross.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/crown.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/cube-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/cube-add.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/cube-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/cube-remove.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/cube.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/cut.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/dashboard.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/database.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/delete.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/delta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/delta.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/derive-column.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/derive-column.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/desktop.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/diagram-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/diagram-tree.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/direction-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/direction-left.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/disable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/disable.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/document-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/document-open.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/document.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/dollar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/dollar.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/dot.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/download.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/draw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/draw.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/drive-time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/drive-time.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/duplicate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/duplicate.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/edit.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/eject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/eject.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/endorsed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/endorsed.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/envelope.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/eraser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/eraser.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/error.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/euro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/euro.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/exchange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/exchange.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/exclude-row.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/exclude-row.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/expand-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/expand-all.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/export.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/eye-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/eye-off.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/eye-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/eye-on.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/eye-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/eye-open.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/fast-backward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/fast-backward.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/fast-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/fast-forward.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/feed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/feed.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/film.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/filter-keep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/filter-keep.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/filter-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/filter-list.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/filter-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/filter-remove.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/filter.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/flag.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/flame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/flame.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/flash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/flash.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/floppy-disk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/floppy-disk.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/flow-branch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/flow-branch.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/flow-end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/flow-end.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/flow-linear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/flow-linear.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/flow-review.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/flow-review.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/flows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/flows.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/folder-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/folder-close.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/folder-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/folder-new.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/folder-open.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/folder-shared.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/folder-shared.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/follower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/follower.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/following.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/following.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/font.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/fork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/fork.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/form.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/form.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/full-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/full-circle.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/fullscreen.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/function.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/function.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/gantt-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/gantt-chart.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/geolocation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/geolocation.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/geosearch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/geosearch.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/git-branch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/git-branch.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/git-commit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/git-commit.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/git-merge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/git-merge.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/git-pull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/git-pull.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/git-push.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/git-push.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/git-repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/git-repo.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/glass.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/globe-network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/globe-network.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/globe.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/graph-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/graph-remove.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/graph.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/grid-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/grid-view.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/grid.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/group-objects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/group-objects.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/hand-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/hand-down.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/hand-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/hand-left.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/hand-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/hand-right.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/hand-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/hand-up.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/hand.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/header-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/header-one.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/header-two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/header-two.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/header.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/headset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/headset.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/heart-broken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/heart-broken.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/heart.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/heat-grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/heat-grid.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/heatmap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/heatmap.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/help.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/highlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/highlight.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/history.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/home.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/id-number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/id-number.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/import.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/inbox-geo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/inbox-geo.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/inbox-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/inbox-search.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/inbox-update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/inbox-update.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/inbox.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/info-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/info-sign.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/inner-join.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/inner-join.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/insert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/insert.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/intersection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/intersection.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/ip-address.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/ip-address.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/issue-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/issue-closed.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/issue-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/issue-new.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/issue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/issue.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/italic.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/join-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/join-table.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/key-backspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/key-backspace.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/key-command.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/key-command.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/key-control.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/key-control.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/key-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/key-delete.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/key-enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/key-enter.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/key-escape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/key-escape.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/key-option.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/key-option.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/key-shift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/key-shift.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/key-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/key-tab.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/key.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/known-vehicle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/known-vehicle.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/label.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/label.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/layer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/layer.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/layers.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/layout-auto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/layout-auto.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/layout-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/layout-circle.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/layout-grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/layout-grid.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/layout-linear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/layout-linear.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/layout.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/left-join.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/left-join.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/lifesaver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/lifesaver.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/lightbulb.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/link.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/list-columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/list-columns.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/list.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/locate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/locate.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/lock.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/log-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/log-in.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/log-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/log-out.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/manual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/manual.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/map-create.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/map-create.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/map-marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/map-marker.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/map.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/maximize.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/media.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/media.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/menu-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/menu-closed.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/menu-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/menu-open.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/menu.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/merge-columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/merge-columns.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/merge-links.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/merge-links.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/minimize.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/minus.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/mobile-phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/mobile-phone.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/mobile-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/mobile-video.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/moon.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/more.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/mountain.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/move.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/mugshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/mugshot.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/multi-select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/multi-select.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/music.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/new-grid-item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/new-grid-item.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/new-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/new-link.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/new-object.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/new-object.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/new-person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/new-person.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/new-text-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/new-text-box.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/ninja.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/ninja.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/notifications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/notifications.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/numbered-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/numbered-list.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/numerical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/numerical.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/office.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/office.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/offline.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/oil-field.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/oil-field.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/one-column.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/one-column.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/outdated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/outdated.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/page-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/page-layout.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/panel-stats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/panel-stats.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/panel-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/panel-table.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/paperclip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/paperclip.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/paragraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/paragraph.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/path-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/path-search.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/path.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/pause.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/people.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/percentage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/percentage.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/person.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/phone.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/pie-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/pie-chart.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/pin.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/pivot-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/pivot-table.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/pivot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/pivot.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/play.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/plus.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/power.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/prescription.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/prescription.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/presentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/presentation.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/print.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/projects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/projects.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/properties.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/properties.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/property.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/property.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/pulse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/pulse.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/random.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/record.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/record.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/redo.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/refresh.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/remove-column.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/remove-column.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/remove.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/repeat.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/resolve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/resolve.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/rig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/rig.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/right-join.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/right-join.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/ring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/ring.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/rotate-page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/rotate-page.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/satellite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/satellite.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/saved.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/saved.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/scatter-plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/scatter-plot.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/search-around.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/search-around.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/search-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/search-text.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/search.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/select.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/selection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/selection.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/send-to-graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/send-to-graph.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/send-to-map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/send-to-map.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/send-to.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/send-to.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/series-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/series-add.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/series-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/series-search.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/settings.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/share.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/shield.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/shop.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/shopping-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/shopping-cart.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/sim-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/sim-card.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/slash.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/small-cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/small-cross.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/small-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/small-minus.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/small-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/small-plus.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/small-tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/small-tick.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/snowflake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/snowflake.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/social-media.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/social-media.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/sort-asc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/sort-asc.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/sort-desc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/sort-desc.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/sort.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/split-columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/split-columns.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/square.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/stacked-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/stacked-chart.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/star-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/star-empty.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/star.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/step-backward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/step-backward.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/step-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/step-chart.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/step-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/step-forward.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/stop.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/strikethrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/strikethrough.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/style.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/style.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/swap-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/swap-vertical.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/symbol-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/symbol-circle.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/symbol-cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/symbol-cross.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/symbol-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/symbol-square.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/tag.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/take-action.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/take-action.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/taxi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/taxi.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/th-derived.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/th-derived.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/th-filtered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/th-filtered.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/th-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/th-list.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/th.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/thumbs-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/thumbs-down.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/thumbs-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/thumbs-up.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/tick-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/tick-circle.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/tick.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/time.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/tint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/tint.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/torch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/torch.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/train.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/translate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/translate.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/trash.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/tree.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/trending-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/trending-down.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/trending-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/trending-up.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/two-columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/two-columns.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/underline.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/undo.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/unlock.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/unpin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/unpin.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/unresolve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/unresolve.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/updated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/updated.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/upload.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/user.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/variable.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/video.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/volume-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/volume-down.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/volume-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/volume-off.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/volume-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/volume-up.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/walk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/walk.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/warning-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/warning-sign.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/widget-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/widget-button.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/widget-footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/widget-footer.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/widget-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/widget-header.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/widget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/widget.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/wrench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/wrench.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/zoom-in.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/zoom-out.svg -------------------------------------------------------------------------------- /src/styles/icons/16px/zoom-to-fit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/16px/zoom-to-fit.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/add-row-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/add-row-top.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/add-to-folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/add-to-folder.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/add.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/airplane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/airplane.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/align-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/align-center.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/align-justify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/align-justify.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/align-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/align-left.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/align-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/align-right.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/alignment-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/alignment-top.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/annotation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/annotation.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/application.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/application.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/applications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/applications.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/arrow-down.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/arrow-left.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/arrow-right.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/arrow-up.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/asterisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/asterisk.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/badge.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/ban-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/ban-circle.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/bank-account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/bank-account.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/barcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/barcode.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/blank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/blank.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/bold.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/book.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/bookmark.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/box.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/briefcase.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/build.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/calculator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/calculator.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/calendar.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/camera.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/caret-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/caret-down.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/caret-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/caret-left.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/caret-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/caret-right.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/caret-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/caret-up.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/cell-tower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/cell-tower.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/changes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/changes.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/chart.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/chat.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/chevron-down.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/chevron-left.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/chevron-right.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/chevron-up.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/circle.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/citation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/citation.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/clean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/clean.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/clipboard.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/cloud-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/cloud-upload.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/cloud.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/code-block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/code-block.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/code.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/cog.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/collapse-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/collapse-all.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/column-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/column-layout.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/comment.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/comparison.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/comparison.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/compass.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/compressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/compressed.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/confirm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/confirm.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/console.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/console.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/contrast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/contrast.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/control.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/control.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/credit-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/credit-card.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/cross.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/crown.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/cube-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/cube-add.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/cube-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/cube-remove.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/cube.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/cut.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/dashboard.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/database.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/delete.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/delta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/delta.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/derive-column.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/derive-column.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/desktop.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/diagram-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/diagram-tree.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/disable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/disable.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/document-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/document-open.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/document.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/dollar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/dollar.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/dot.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/download.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/draw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/draw.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/drive-time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/drive-time.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/duplicate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/duplicate.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/edit.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/eject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/eject.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/endorsed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/endorsed.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/envelope.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/eraser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/eraser.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/error.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/euro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/euro.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/exchange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/exchange.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/exclude-row.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/exclude-row.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/expand-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/expand-all.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/export.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/eye-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/eye-off.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/eye-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/eye-on.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/eye-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/eye-open.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/fast-backward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/fast-backward.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/fast-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/fast-forward.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/feed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/feed.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/film.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/filter-keep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/filter-keep.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/filter-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/filter-list.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/filter-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/filter-remove.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/filter.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/flag.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/flame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/flame.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/flash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/flash.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/floppy-disk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/floppy-disk.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/flow-branch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/flow-branch.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/flow-end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/flow-end.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/flow-linear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/flow-linear.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/flow-review.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/flow-review.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/flows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/flows.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/folder-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/folder-close.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/folder-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/folder-new.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/folder-open.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/folder-shared.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/folder-shared.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/follower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/follower.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/following.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/following.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/font.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/fork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/fork.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/form.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/form.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/full-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/full-circle.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/fullscreen.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/function.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/function.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/gantt-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/gantt-chart.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/geolocation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/geolocation.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/geosearch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/geosearch.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/git-branch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/git-branch.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/git-commit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/git-commit.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/git-merge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/git-merge.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/git-pull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/git-pull.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/git-push.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/git-push.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/git-repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/git-repo.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/glass.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/globe-network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/globe-network.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/globe.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/graph-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/graph-remove.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/graph.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/grid-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/grid-view.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/grid.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/group-objects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/group-objects.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/hand-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/hand-down.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/hand-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/hand-left.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/hand-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/hand-right.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/hand-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/hand-up.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/hand.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/header-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/header-one.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/header-two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/header-two.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/header.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/headset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/headset.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/heart-broken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/heart-broken.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/heart.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/heat-grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/heat-grid.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/heatmap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/heatmap.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/help.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/highlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/highlight.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/history.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/home.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/id-number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/id-number.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/import.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/inbox-geo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/inbox-geo.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/inbox-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/inbox-search.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/inbox-update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/inbox-update.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/inbox.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/info-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/info-sign.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/inner-join.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/inner-join.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/insert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/insert.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/intersection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/intersection.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/ip-address.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/ip-address.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/issue-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/issue-closed.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/issue-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/issue-new.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/issue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/issue.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/italic.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/join-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/join-table.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/key-backspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/key-backspace.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/key-command.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/key-command.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/key-control.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/key-control.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/key-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/key-delete.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/key-enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/key-enter.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/key-escape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/key-escape.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/key-option.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/key-option.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/key-shift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/key-shift.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/key-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/key-tab.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/key.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/known-vehicle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/known-vehicle.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/label.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/label.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/layer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/layer.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/layers.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/layout-auto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/layout-auto.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/layout-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/layout-circle.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/layout-grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/layout-grid.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/layout-linear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/layout-linear.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/layout.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/left-join.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/left-join.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/lifesaver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/lifesaver.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/lightbulb.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/link.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/list-columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/list-columns.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/list.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/locate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/locate.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/lock.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/log-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/log-in.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/log-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/log-out.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/manual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/manual.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/map-create.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/map-create.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/map-marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/map-marker.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/map.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/maximize.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/media.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/media.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/menu-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/menu-closed.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/menu-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/menu-open.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/menu.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/merge-columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/merge-columns.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/merge-links.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/merge-links.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/minimize.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/minus.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/mobile-phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/mobile-phone.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/mobile-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/mobile-video.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/moon.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/more.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/mountain.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/move.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/mugshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/mugshot.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/multi-select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/multi-select.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/music.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/new-grid-item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/new-grid-item.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/new-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/new-link.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/new-object.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/new-object.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/new-person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/new-person.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/new-text-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/new-text-box.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/ninja.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/ninja.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/notifications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/notifications.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/numbered-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/numbered-list.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/numerical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/numerical.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/office.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/office.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/offline.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/oil-field.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/oil-field.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/one-column.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/one-column.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/outdated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/outdated.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/page-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/page-layout.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/panel-stats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/panel-stats.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/panel-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/panel-table.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/paperclip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/paperclip.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/paragraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/paragraph.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/path-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/path-search.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/path.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/pause.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/people.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/percentage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/percentage.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/person.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/phone.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/pie-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/pie-chart.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/pin.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/pivot-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/pivot-table.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/pivot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/pivot.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/play.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/plus.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/power.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/prescription.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/prescription.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/presentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/presentation.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/print.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/projects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/projects.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/properties.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/properties.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/property.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/property.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/pulse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/pulse.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/random.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/record.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/record.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/redo.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/refresh.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/remove-column.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/remove-column.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/remove.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/repeat.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/resolve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/resolve.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/rig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/rig.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/right-join.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/right-join.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/ring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/ring.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/rotate-page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/rotate-page.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/satellite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/satellite.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/saved.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/saved.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/scatter-plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/scatter-plot.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/search-around.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/search-around.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/search-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/search-text.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/search.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/select.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/selection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/selection.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/send-to-graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/send-to-graph.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/send-to-map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/send-to-map.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/send-to.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/send-to.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/series-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/series-add.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/series-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/series-search.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/settings.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/share.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/shield.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/shop.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/shopping-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/shopping-cart.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/sim-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/sim-card.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/slash.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/small-cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/small-cross.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/small-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/small-minus.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/small-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/small-plus.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/small-tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/small-tick.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/snowflake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/snowflake.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/social-media.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/social-media.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/sort-asc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/sort-asc.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/sort-desc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/sort-desc.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/sort.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/split-columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/split-columns.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/square.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/stacked-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/stacked-chart.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/star-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/star-empty.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/star.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/step-backward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/step-backward.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/step-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/step-chart.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/step-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/step-forward.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/stop.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/strikethrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/strikethrough.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/style.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/style.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/swap-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/swap-vertical.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/symbol-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/symbol-circle.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/symbol-cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/symbol-cross.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/symbol-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/symbol-square.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/tag.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/take-action.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/take-action.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/taxi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/taxi.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/th-derived.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/th-derived.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/th-filtered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/th-filtered.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/th-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/th-list.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/th.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/thumbs-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/thumbs-down.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/thumbs-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/thumbs-up.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/tick-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/tick-circle.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/tick.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/time.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/tint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/tint.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/torch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/torch.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/train.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/translate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/translate.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/trash.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/tree.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/trending-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/trending-down.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/trending-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/trending-up.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/two-columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/two-columns.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/underline.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/undo.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/unlock.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/unpin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/unpin.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/unresolve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/unresolve.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/updated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/updated.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/upload.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/user.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/variable.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/video.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/volume-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/volume-down.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/volume-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/volume-off.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/volume-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/volume-up.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/walk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/walk.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/warning-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/warning-sign.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/widget-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/widget-button.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/widget-footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/widget-footer.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/widget-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/widget-header.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/widget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/widget.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/wrench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/wrench.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/zoom-in.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/zoom-out.svg -------------------------------------------------------------------------------- /src/styles/icons/20px/zoom-to-fit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/icons/20px/zoom-to-fit.svg -------------------------------------------------------------------------------- /src/styles/tailwind/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/tailwind/_base.scss -------------------------------------------------------------------------------- /src/styles/tailwind/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/styles/tailwind/tailwind.config.js -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/withErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/src/withErrorBoundary.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/ui-kit/HEAD/yarn.lock --------------------------------------------------------------------------------