@@ -198,6 +204,12 @@ exports[`Button styles danger button appropriately 1`] = `
border-color: btn.danger.selectedBorder;
}
+@media (forced-colors:active) {
+ .c0:focus {
+ outline: solid 1px transparent;
+ }
+}
+
@@ -209,6 +221,111 @@ exports[`Button styles danger button appropriately 1`] = `
`;
+exports[`Button styles icon only button to make it a square 1`] = `
+.c1 {
+ display: inline-block;
+}
+
+.c0 {
+ border-radius: 2;
+ border: 1px solid;
+ font-family: inherit;
+ font-weight: bold;
+ line-height: 20px;
+ white-space: nowrap;
+ vertical-align: middle;
+ cursor: pointer;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ text-align: center;
+ padding-top: 5px;
+ padding-bottom: 5px;
+ padding-left: 8px;
+ padding-right: 8px;
+ font-size: 14px;
+ color: btn.text;
+ background-color: btn.bg;
+ box-shadow: undefined,undefined;
+}
+
+.c0:focus {
+ outline: none;
+}
+
+.c0:disabled {
+ cursor: default;
+ color: primer.fg.disabled;
+}
+
+.c0:disabled [data-component=ButtonCounter] {
+ color: inherit;
+}
+
+.c0:disabled svg {
+ opacity: 0.6;
+}
+
+.c0 [data-component=ButtonCounter] {
+ font-size: 14px;
+}
+
+.c0:hover:not([disabled]) {
+ background-color: btn.hoverBg;
+}
+
+.c0:focus:not([disabled]) {
+ box-shadow: undefined;
+}
+
+.c0:active:not([disabled]) {
+ background-color: btn.activeBg;
+ border-color: btn.activeBorder;
+}
+
+.c0[aria-expanded=true] {
+ background-color: btn.activeBg;
+ border-color: btn.activeBorder;
+}
+
+@media (forced-colors:active) {
+ .c0:focus {
+ outline: solid 1px transparent;
+ }
+}
+
+
+
+
+
+
+
+
+`;
+
exports[`Button styles invisible button appropriately 1`] = `
.c0 {
border-radius: 2;
@@ -294,6 +411,12 @@ exports[`Button styles invisible button appropriately 1`] = `
background-color: btn.selectedBg;
}
+@media (forced-colors:active) {
+ .c0:focus {
+ outline: solid 1px transparent;
+ }
+}
+
@@ -411,6 +534,12 @@ exports[`Button styles outline button appropriately 1`] = `
border-color: btn.outline.selectedBorder;
}
+@media (forced-colors:active) {
+ .c0:focus {
+ outline: solid 1px transparent;
+ }
+}
+
@@ -514,6 +643,12 @@ exports[`Button styles primary button appropriately 1`] = `
box-shadow: undefined;
}
+@media (forced-colors:active) {
+ .c0:focus {
+ outline: solid 1px transparent;
+ }
+}
+
diff --git a/src/__tests__/__snapshots__/TextInput.test.tsx.snap b/src/__tests__/__snapshots__/TextInput.test.tsx.snap
index 72357fe70a8..9b90d3ef97f 100644
--- a/src/__tests__/__snapshots__/TextInput.test.tsx.snap
+++ b/src/__tests__/__snapshots__/TextInput.test.tsx.snap
@@ -93,7 +93,10 @@ exports[`TextInput renders 1`] = `
}
`;
+exports[`TextInput renders with a loading indicator 1`] = `
+Array [
+ .c2 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 0;
+ padding-right: 12px;
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 12px;
+ padding-right: 0;
+}
+
+.c1 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+}
+
+.c1:focus {
+ outline: 0;
+}
+
+.c3 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ visibility: visible;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+
+ ,
+ .c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 12px;
+ padding-right: 0;
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 0;
+ padding-right: 12px;
+}
+
+.c3 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+}
+
+.c3:focus {
+ outline: 0;
+}
+
+.c2 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ visibility: visible;
+}
+
+.c4 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ visibility: hidden;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+
+
+
+
+ ,
+ .c2 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 0;
+ padding-right: 12px;
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 12px;
+ padding-right: 0;
+}
+
+.c1 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+}
+
+.c1:focus {
+ outline: 0;
+}
+
+.c3 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ visibility: visible;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+
+ ,
+ .c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c2 {
+ visibility: hidden;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 12px;
+ padding-right: 0;
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 0;
+ padding-right: 12px;
+}
+
+.c4 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+}
+
+.c4:focus {
+ outline: 0;
+}
+
+.c5 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ visibility: hidden;
+}
+
+.c3 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: visible;
+ left: 0;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+
+
+
+
+ ,
+ .c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c2 {
+ visibility: hidden;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 12px;
+ padding-right: 0;
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 0;
+ padding-right: 12px;
+}
+
+.c4 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+}
+
+.c4:focus {
+ outline: 0;
+}
+
+.c5 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ visibility: hidden;
+}
+
+.c3 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: visible;
+ left: 0;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+
+
+
+
+ ,
+ .c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c2 {
+ visibility: visible;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 12px;
+ padding-right: 12px;
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 0;
+ padding-right: 0;
+}
+
+.c4 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+}
+
+.c4:focus {
+ outline: 0;
+}
+
+.c5 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ visibility: visible;
+}
+
+.c3 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: hidden;
+ left: 0;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+
+
+
+
+ ,
+ .c2 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c3 {
+ visibility: hidden;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 0;
+ padding-right: 12px;
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 12px;
+ padding-right: 0;
+}
+
+.c1 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+}
+
+.c1:focus {
+ outline: 0;
+}
+
+.c4 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: visible;
+ right: 0;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+ ,
+ .c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c4 {
+ visibility: visible;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 12px;
+ padding-right: 12px;
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 0;
+ padding-right: 0;
+}
+
+.c3 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+}
+
+.c3:focus {
+ outline: 0;
+}
+
+.c2 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ visibility: visible;
+}
+
+.c5 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: hidden;
+ right: 0;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+ ,
+ .c2 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c3 {
+ visibility: hidden;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 0;
+ padding-right: 12px;
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 12px;
+ padding-right: 0;
+}
+
+.c1 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+}
+
+.c1:focus {
+ outline: 0;
+}
+
+.c4 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: visible;
+ right: 0;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+ ,
+ .c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c2 {
+ visibility: hidden;
+}
+
+.c5 {
+ visibility: visible;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ min-height: 28px;
+ padding-left: 8px;
+ padding-right: 8px;
+ padding-top: 3px;
+ padding-bottom: 3px;
+ font-size: 12px;
+ line-height: 20px;
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 12px;
+ padding-right: 12px;
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 0;
+ padding-right: 0;
+}
+
+.c4 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+}
+
+.c4:focus {
+ outline: 0;
+}
+
+.c3 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: visible;
+ left: 0;
+}
+
+.c6 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: hidden;
+ right: 0;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+ ,
+ .c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c2 {
+ visibility: hidden;
+}
+
+.c5 {
+ visibility: visible;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 12px;
+ padding-right: 12px;
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 0;
+ padding-right: 0;
+}
+
+.c4 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+}
+
+.c4:focus {
+ outline: 0;
+}
+
+.c3 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: visible;
+ left: 0;
+}
+
+.c6 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: hidden;
+ right: 0;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+ ,
+ .c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c5 {
+ visibility: hidden;
+}
+
+.c2 {
+ visibility: visible;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ padding-left: 8px;
+ padding-right: 8px;
+ padding-top: 10px;
+ padding-bottom: 10px;
+ font-size: 20px;
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 12px;
+ padding-right: 12px;
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 0;
+ padding-right: 0;
+}
+
+.c4 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+}
+
+.c4:focus {
+ outline: 0;
+}
+
+.c3 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: hidden;
+ left: 0;
+}
+
+.c6 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: visible;
+ right: 0;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+ ,
+]
+`;
+
exports[`TextInput should render a password input 1`] = `
.c0 {
font-size: 14px;
@@ -1428,7 +4175,10 @@ exports[`TextInput should render a password input 1`] = `
}
`;
+exports[`TextInputWithTokens renders with a loading indicator 1`] = `
+Array [
+ .c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-left: -0.25rem;
+ margin-bottom: -0.25rem;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c1 > * {
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ margin-left: 0.25rem;
+ margin-bottom: 0.25rem;
+}
+
+.c2 {
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c7 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 0;
+ padding-right: 0;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 12px;
+ padding-right: 12px;
+}
+
+.c3 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+ height: 100%;
+}
+
+.c3:focus {
+ outline: 0;
+}
+
+.c8 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ visibility: visible;
+}
+
+.c6 {
+ background-color: transparent;
+ font-family: inherit;
+ color: currentColor;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ padding: 0;
+ -webkit-transform: translate(1px,-1px);
+ -ms-transform: translate(1px,-1px);
+ transform: translate(1px,-1px);
+ -webkit-align-self: baseline;
+ -ms-flex-item-align: baseline;
+ align-self: baseline;
+ border: 0;
+ border-radius: 999px;
+ margin-left: 8px;
+ height: 32px;
+ width: 32px;
+ position: relative;
+ z-index: 1;
+}
+
+.c6:hover,
+.c6:focus {
+ background-color: rgba(175,184,193,0.2);
+}
+
+.c6:active {
+ background-color: rgba(234,238,242,0.5);
+}
+
+.c5 {
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ min-width: 0;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ background: transparent;
+ border: none;
+ color: inherit;
+ font: inherit;
+ margin: 0;
+ overflow: visible;
+ padding: 0;
+ width: auto;
+ -webkit-font-smoothing: inherit;
+ -moz-osx-font-smoothing: inherit;
+ -webkit-appearance: none;
+ line-height: 1;
+ color: currentColor;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+}
+
+.c5:is(a,button,[tabIndex='0']) {
+ cursor: pointer;
+}
+
+.c5:is(a,button,[tabIndex='0']):after {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+}
+
+.c4 {
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ border-radius: 999px;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ font-weight: 600;
+ font-family: inherit;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ white-space: nowrap;
+ font-size: 14px;
+ height: 32px;
+ line-height: 32px;
+ padding-left: 16px;
+ padding-right: 16px;
+ padding-top: 0;
+ padding-bottom: 0;
+ background-color: rgba(234,238,242,0.5);
+ border-color: rgba(27,31,36,0.15);
+ border-style: solid;
+ border-width: 1px;
+ color: #57606a;
+ max-width: 100%;
+ padding-right: 0;
+ position: relative;
+}
+
+.c4:hover {
+ background-color: rgba(175,184,193,0.2);
+ color: #24292f;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+
+
+
+ zero
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ one
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ two
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ three
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ four
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ five
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ six
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ seven
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+
+
+ ,
+ .c3 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-left: -0.25rem;
+ margin-bottom: -0.25rem;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c3 > * {
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ margin-left: 0.25rem;
+ margin-bottom: 0.25rem;
+}
+
+.c4 {
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 0;
+ padding-right: 0;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 12px;
+ padding-right: 12px;
+}
+
+.c5 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+ height: 100%;
+}
+
+.c5:focus {
+ outline: 0;
+}
+
+.c2 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ visibility: visible;
+}
+
+.c9 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ visibility: hidden;
+}
+
+.c8 {
+ background-color: transparent;
+ font-family: inherit;
+ color: currentColor;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ padding: 0;
+ -webkit-transform: translate(1px,-1px);
+ -ms-transform: translate(1px,-1px);
+ transform: translate(1px,-1px);
+ -webkit-align-self: baseline;
+ -ms-flex-item-align: baseline;
+ align-self: baseline;
+ border: 0;
+ border-radius: 999px;
+ margin-left: 8px;
+ height: 32px;
+ width: 32px;
+ position: relative;
+ z-index: 1;
+}
+
+.c8:hover,
+.c8:focus {
+ background-color: rgba(175,184,193,0.2);
+}
+
+.c8:active {
+ background-color: rgba(234,238,242,0.5);
+}
+
+.c7 {
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ min-width: 0;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ background: transparent;
+ border: none;
+ color: inherit;
+ font: inherit;
+ margin: 0;
+ overflow: visible;
+ padding: 0;
+ width: auto;
+ -webkit-font-smoothing: inherit;
+ -moz-osx-font-smoothing: inherit;
+ -webkit-appearance: none;
+ line-height: 1;
+ color: currentColor;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+}
+
+.c7:is(a,button,[tabIndex='0']) {
+ cursor: pointer;
+}
+
+.c7:is(a,button,[tabIndex='0']):after {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+}
+
+.c6 {
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ border-radius: 999px;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ font-weight: 600;
+ font-family: inherit;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ white-space: nowrap;
+ font-size: 14px;
+ height: 32px;
+ line-height: 32px;
+ padding-left: 16px;
+ padding-right: 16px;
+ padding-top: 0;
+ padding-bottom: 0;
+ background-color: rgba(234,238,242,0.5);
+ border-color: rgba(27,31,36,0.15);
+ border-style: solid;
+ border-width: 1px;
+ color: #57606a;
+ max-width: 100%;
+ padding-right: 0;
+ position: relative;
+}
+
+.c6:hover {
+ background-color: rgba(175,184,193,0.2);
+ color: #24292f;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+
+
+
+
+
+
+ zero
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ one
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ two
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ three
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ four
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ five
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ six
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ seven
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+
+
+ ,
+ .c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-left: -0.25rem;
+ margin-bottom: -0.25rem;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c1 > * {
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ margin-left: 0.25rem;
+ margin-bottom: 0.25rem;
+}
+
+.c2 {
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c7 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 0;
+ padding-right: 0;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 12px;
+ padding-right: 12px;
+}
+
+.c3 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+ height: 100%;
+}
+
+.c3:focus {
+ outline: 0;
+}
+
+.c8 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ visibility: visible;
+}
+
+.c6 {
+ background-color: transparent;
+ font-family: inherit;
+ color: currentColor;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ padding: 0;
+ -webkit-transform: translate(1px,-1px);
+ -ms-transform: translate(1px,-1px);
+ transform: translate(1px,-1px);
+ -webkit-align-self: baseline;
+ -ms-flex-item-align: baseline;
+ align-self: baseline;
+ border: 0;
+ border-radius: 999px;
+ margin-left: 8px;
+ height: 32px;
+ width: 32px;
+ position: relative;
+ z-index: 1;
+}
+
+.c6:hover,
+.c6:focus {
+ background-color: rgba(175,184,193,0.2);
+}
+
+.c6:active {
+ background-color: rgba(234,238,242,0.5);
+}
+
+.c5 {
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ min-width: 0;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ background: transparent;
+ border: none;
+ color: inherit;
+ font: inherit;
+ margin: 0;
+ overflow: visible;
+ padding: 0;
+ width: auto;
+ -webkit-font-smoothing: inherit;
+ -moz-osx-font-smoothing: inherit;
+ -webkit-appearance: none;
+ line-height: 1;
+ color: currentColor;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+}
+
+.c5:is(a,button,[tabIndex='0']) {
+ cursor: pointer;
+}
+
+.c5:is(a,button,[tabIndex='0']):after {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+}
+
+.c4 {
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ border-radius: 999px;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ font-weight: 600;
+ font-family: inherit;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ white-space: nowrap;
+ font-size: 14px;
+ height: 32px;
+ line-height: 32px;
+ padding-left: 16px;
+ padding-right: 16px;
+ padding-top: 0;
+ padding-bottom: 0;
+ background-color: rgba(234,238,242,0.5);
+ border-color: rgba(27,31,36,0.15);
+ border-style: solid;
+ border-width: 1px;
+ color: #57606a;
+ max-width: 100%;
+ padding-right: 0;
+ position: relative;
+}
+
+.c4:hover {
+ background-color: rgba(175,184,193,0.2);
+ color: #24292f;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+
+
+
+ zero
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ one
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ two
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ three
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ four
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ five
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ six
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ seven
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+
+
+ ,
+ .c4 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-left: -0.25rem;
+ margin-bottom: -0.25rem;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c4 > * {
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ margin-left: 0.25rem;
+ margin-bottom: 0.25rem;
+}
+
+.c5 {
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c2 {
+ visibility: hidden;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 12px;
+ padding-right: 0;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 0;
+ padding-right: 12px;
+}
+
+.c6 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+ height: 100%;
+}
+
+.c6:focus {
+ outline: 0;
+}
+
+.c10 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ visibility: hidden;
+}
+
+.c3 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: visible;
+ left: 0;
+}
+
+.c9 {
+ background-color: transparent;
+ font-family: inherit;
+ color: currentColor;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ padding: 0;
+ -webkit-transform: translate(1px,-1px);
+ -ms-transform: translate(1px,-1px);
+ transform: translate(1px,-1px);
+ -webkit-align-self: baseline;
+ -ms-flex-item-align: baseline;
+ align-self: baseline;
+ border: 0;
+ border-radius: 999px;
+ margin-left: 8px;
+ height: 32px;
+ width: 32px;
+ position: relative;
+ z-index: 1;
+}
+
+.c9:hover,
+.c9:focus {
+ background-color: rgba(175,184,193,0.2);
+}
+
+.c9:active {
+ background-color: rgba(234,238,242,0.5);
+}
+
+.c8 {
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ min-width: 0;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ background: transparent;
+ border: none;
+ color: inherit;
+ font: inherit;
+ margin: 0;
+ overflow: visible;
+ padding: 0;
+ width: auto;
+ -webkit-font-smoothing: inherit;
+ -moz-osx-font-smoothing: inherit;
+ -webkit-appearance: none;
+ line-height: 1;
+ color: currentColor;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+}
+
+.c8:is(a,button,[tabIndex='0']) {
+ cursor: pointer;
+}
+
+.c8:is(a,button,[tabIndex='0']):after {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+}
+
+.c7 {
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ border-radius: 999px;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ font-weight: 600;
+ font-family: inherit;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ white-space: nowrap;
+ font-size: 14px;
+ height: 32px;
+ line-height: 32px;
+ padding-left: 16px;
+ padding-right: 16px;
+ padding-top: 0;
+ padding-bottom: 0;
+ background-color: rgba(234,238,242,0.5);
+ border-color: rgba(27,31,36,0.15);
+ border-style: solid;
+ border-width: 1px;
+ color: #57606a;
+ max-width: 100%;
+ padding-right: 0;
+ position: relative;
+}
+
+.c7:hover {
+ background-color: rgba(175,184,193,0.2);
+ color: #24292f;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+
+ zero
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ one
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ two
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ three
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ four
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ five
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ six
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ seven
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+
+
+ ,
+ .c4 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-left: -0.25rem;
+ margin-bottom: -0.25rem;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c4 > * {
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ margin-left: 0.25rem;
+ margin-bottom: 0.25rem;
+}
+
+.c5 {
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c2 {
+ visibility: hidden;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 12px;
+ padding-right: 0;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 0;
+ padding-right: 12px;
+}
+
+.c6 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+ height: 100%;
+}
+
+.c6:focus {
+ outline: 0;
+}
+
+.c10 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ visibility: hidden;
+}
+
+.c3 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: visible;
+ left: 0;
+}
+
+.c9 {
+ background-color: transparent;
+ font-family: inherit;
+ color: currentColor;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ padding: 0;
+ -webkit-transform: translate(1px,-1px);
+ -ms-transform: translate(1px,-1px);
+ transform: translate(1px,-1px);
+ -webkit-align-self: baseline;
+ -ms-flex-item-align: baseline;
+ align-self: baseline;
+ border: 0;
+ border-radius: 999px;
+ margin-left: 8px;
+ height: 32px;
+ width: 32px;
+ position: relative;
+ z-index: 1;
+}
+
+.c9:hover,
+.c9:focus {
+ background-color: rgba(175,184,193,0.2);
+}
+
+.c9:active {
+ background-color: rgba(234,238,242,0.5);
+}
+
+.c8 {
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ min-width: 0;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ background: transparent;
+ border: none;
+ color: inherit;
+ font: inherit;
+ margin: 0;
+ overflow: visible;
+ padding: 0;
+ width: auto;
+ -webkit-font-smoothing: inherit;
+ -moz-osx-font-smoothing: inherit;
+ -webkit-appearance: none;
+ line-height: 1;
+ color: currentColor;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+}
+
+.c8:is(a,button,[tabIndex='0']) {
+ cursor: pointer;
+}
+
+.c8:is(a,button,[tabIndex='0']):after {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+}
+
+.c7 {
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ border-radius: 999px;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ font-weight: 600;
+ font-family: inherit;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ white-space: nowrap;
+ font-size: 14px;
+ height: 32px;
+ line-height: 32px;
+ padding-left: 16px;
+ padding-right: 16px;
+ padding-top: 0;
+ padding-bottom: 0;
+ background-color: rgba(234,238,242,0.5);
+ border-color: rgba(27,31,36,0.15);
+ border-style: solid;
+ border-width: 1px;
+ color: #57606a;
+ max-width: 100%;
+ padding-right: 0;
+ position: relative;
+}
+
+.c7:hover {
+ background-color: rgba(175,184,193,0.2);
+ color: #24292f;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+
+ zero
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ one
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ two
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ three
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ four
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ five
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ six
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ seven
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+
+
+ ,
+ .c4 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-left: -0.25rem;
+ margin-bottom: -0.25rem;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c4 > * {
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ margin-left: 0.25rem;
+ margin-bottom: 0.25rem;
+}
+
+.c5 {
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c2 {
+ visibility: visible;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 12px;
+ padding-right: 0;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 0;
+ padding-right: 12px;
+}
+
+.c6 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+ height: 100%;
+}
+
+.c6:focus {
+ outline: 0;
+}
+
+.c10 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ visibility: visible;
+}
+
+.c3 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: hidden;
+ left: 0;
+}
+
+.c9 {
+ background-color: transparent;
+ font-family: inherit;
+ color: currentColor;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ padding: 0;
+ -webkit-transform: translate(1px,-1px);
+ -ms-transform: translate(1px,-1px);
+ transform: translate(1px,-1px);
+ -webkit-align-self: baseline;
+ -ms-flex-item-align: baseline;
+ align-self: baseline;
+ border: 0;
+ border-radius: 999px;
+ margin-left: 8px;
+ height: 32px;
+ width: 32px;
+ position: relative;
+ z-index: 1;
+}
+
+.c9:hover,
+.c9:focus {
+ background-color: rgba(175,184,193,0.2);
+}
+
+.c9:active {
+ background-color: rgba(234,238,242,0.5);
+}
+
+.c8 {
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ min-width: 0;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ background: transparent;
+ border: none;
+ color: inherit;
+ font: inherit;
+ margin: 0;
+ overflow: visible;
+ padding: 0;
+ width: auto;
+ -webkit-font-smoothing: inherit;
+ -moz-osx-font-smoothing: inherit;
+ -webkit-appearance: none;
+ line-height: 1;
+ color: currentColor;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+}
+
+.c8:is(a,button,[tabIndex='0']) {
+ cursor: pointer;
+}
+
+.c8:is(a,button,[tabIndex='0']):after {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+}
+
+.c7 {
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ border-radius: 999px;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ font-weight: 600;
+ font-family: inherit;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ white-space: nowrap;
+ font-size: 14px;
+ height: 32px;
+ line-height: 32px;
+ padding-left: 16px;
+ padding-right: 16px;
+ padding-top: 0;
+ padding-bottom: 0;
+ background-color: rgba(234,238,242,0.5);
+ border-color: rgba(27,31,36,0.15);
+ border-style: solid;
+ border-width: 1px;
+ color: #57606a;
+ max-width: 100%;
+ padding-right: 0;
+ position: relative;
+}
+
+.c7:hover {
+ background-color: rgba(175,184,193,0.2);
+ color: #24292f;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+
+ zero
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ one
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ two
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ three
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ four
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ five
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ six
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ seven
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+
+
+ ,
+ .c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-left: -0.25rem;
+ margin-bottom: -0.25rem;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c1 > * {
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ margin-left: 0.25rem;
+ margin-bottom: 0.25rem;
+}
+
+.c2 {
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c7 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c8 {
+ visibility: hidden;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 0;
+ padding-right: 12px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 12px;
+ padding-right: 0;
+}
+
+.c3 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+ height: 100%;
+}
+
+.c3:focus {
+ outline: 0;
+}
+
+.c9 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: visible;
+ right: 0;
+}
+
+.c6 {
+ background-color: transparent;
+ font-family: inherit;
+ color: currentColor;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ padding: 0;
+ -webkit-transform: translate(1px,-1px);
+ -ms-transform: translate(1px,-1px);
+ transform: translate(1px,-1px);
+ -webkit-align-self: baseline;
+ -ms-flex-item-align: baseline;
+ align-self: baseline;
+ border: 0;
+ border-radius: 999px;
+ margin-left: 8px;
+ height: 32px;
+ width: 32px;
+ position: relative;
+ z-index: 1;
+}
+
+.c6:hover,
+.c6:focus {
+ background-color: rgba(175,184,193,0.2);
+}
+
+.c6:active {
+ background-color: rgba(234,238,242,0.5);
+}
+
+.c5 {
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ min-width: 0;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ background: transparent;
+ border: none;
+ color: inherit;
+ font: inherit;
+ margin: 0;
+ overflow: visible;
+ padding: 0;
+ width: auto;
+ -webkit-font-smoothing: inherit;
+ -moz-osx-font-smoothing: inherit;
+ -webkit-appearance: none;
+ line-height: 1;
+ color: currentColor;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+}
+
+.c5:is(a,button,[tabIndex='0']) {
+ cursor: pointer;
+}
+
+.c5:is(a,button,[tabIndex='0']):after {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+}
+
+.c4 {
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ border-radius: 999px;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ font-weight: 600;
+ font-family: inherit;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ white-space: nowrap;
+ font-size: 14px;
+ height: 32px;
+ line-height: 32px;
+ padding-left: 16px;
+ padding-right: 16px;
+ padding-top: 0;
+ padding-bottom: 0;
+ background-color: rgba(234,238,242,0.5);
+ border-color: rgba(27,31,36,0.15);
+ border-style: solid;
+ border-width: 1px;
+ color: #57606a;
+ max-width: 100%;
+ padding-right: 0;
+ position: relative;
+}
+
+.c4:hover {
+ background-color: rgba(175,184,193,0.2);
+ color: #24292f;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+
+
+
+ zero
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ one
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ two
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ three
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ four
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ five
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ six
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ seven
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+ ,
+ .c3 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-left: -0.25rem;
+ margin-bottom: -0.25rem;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c3 > * {
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ margin-left: 0.25rem;
+ margin-bottom: 0.25rem;
+}
+
+.c4 {
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c9 {
+ visibility: visible;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 0;
+ padding-right: 12px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 12px;
+ padding-right: 0;
+}
+
+.c5 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+ height: 100%;
+}
+
+.c5:focus {
+ outline: 0;
+}
+
+.c2 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ visibility: visible;
+}
+
+.c10 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: hidden;
+ right: 0;
+}
+
+.c8 {
+ background-color: transparent;
+ font-family: inherit;
+ color: currentColor;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ padding: 0;
+ -webkit-transform: translate(1px,-1px);
+ -ms-transform: translate(1px,-1px);
+ transform: translate(1px,-1px);
+ -webkit-align-self: baseline;
+ -ms-flex-item-align: baseline;
+ align-self: baseline;
+ border: 0;
+ border-radius: 999px;
+ margin-left: 8px;
+ height: 32px;
+ width: 32px;
+ position: relative;
+ z-index: 1;
+}
+
+.c8:hover,
+.c8:focus {
+ background-color: rgba(175,184,193,0.2);
+}
+
+.c8:active {
+ background-color: rgba(234,238,242,0.5);
+}
+
+.c7 {
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ min-width: 0;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ background: transparent;
+ border: none;
+ color: inherit;
+ font: inherit;
+ margin: 0;
+ overflow: visible;
+ padding: 0;
+ width: auto;
+ -webkit-font-smoothing: inherit;
+ -moz-osx-font-smoothing: inherit;
+ -webkit-appearance: none;
+ line-height: 1;
+ color: currentColor;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+}
+
+.c7:is(a,button,[tabIndex='0']) {
+ cursor: pointer;
+}
+
+.c7:is(a,button,[tabIndex='0']):after {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+}
+
+.c6 {
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ border-radius: 999px;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ font-weight: 600;
+ font-family: inherit;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ white-space: nowrap;
+ font-size: 14px;
+ height: 32px;
+ line-height: 32px;
+ padding-left: 16px;
+ padding-right: 16px;
+ padding-top: 0;
+ padding-bottom: 0;
+ background-color: rgba(234,238,242,0.5);
+ border-color: rgba(27,31,36,0.15);
+ border-style: solid;
+ border-width: 1px;
+ color: #57606a;
+ max-width: 100%;
+ padding-right: 0;
+ position: relative;
+}
+
+.c6:hover {
+ background-color: rgba(175,184,193,0.2);
+ color: #24292f;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+
+
+
+
+
+
+ zero
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ one
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ two
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ three
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ four
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ five
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ six
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ seven
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+ ,
+ .c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-left: -0.25rem;
+ margin-bottom: -0.25rem;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c1 > * {
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ margin-left: 0.25rem;
+ margin-bottom: 0.25rem;
+}
+
+.c2 {
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c7 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c8 {
+ visibility: hidden;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 0;
+ padding-right: 12px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 12px;
+ padding-right: 0;
+}
+
+.c3 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+ height: 100%;
+}
+
+.c3:focus {
+ outline: 0;
+}
+
+.c9 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: visible;
+ right: 0;
+}
+
+.c6 {
+ background-color: transparent;
+ font-family: inherit;
+ color: currentColor;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ padding: 0;
+ -webkit-transform: translate(1px,-1px);
+ -ms-transform: translate(1px,-1px);
+ transform: translate(1px,-1px);
+ -webkit-align-self: baseline;
+ -ms-flex-item-align: baseline;
+ align-self: baseline;
+ border: 0;
+ border-radius: 999px;
+ margin-left: 8px;
+ height: 32px;
+ width: 32px;
+ position: relative;
+ z-index: 1;
+}
+
+.c6:hover,
+.c6:focus {
+ background-color: rgba(175,184,193,0.2);
+}
+
+.c6:active {
+ background-color: rgba(234,238,242,0.5);
+}
+
+.c5 {
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ min-width: 0;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ background: transparent;
+ border: none;
+ color: inherit;
+ font: inherit;
+ margin: 0;
+ overflow: visible;
+ padding: 0;
+ width: auto;
+ -webkit-font-smoothing: inherit;
+ -moz-osx-font-smoothing: inherit;
+ -webkit-appearance: none;
+ line-height: 1;
+ color: currentColor;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+}
+
+.c5:is(a,button,[tabIndex='0']) {
+ cursor: pointer;
+}
+
+.c5:is(a,button,[tabIndex='0']):after {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+}
+
+.c4 {
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ border-radius: 999px;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ font-weight: 600;
+ font-family: inherit;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ white-space: nowrap;
+ font-size: 14px;
+ height: 32px;
+ line-height: 32px;
+ padding-left: 16px;
+ padding-right: 16px;
+ padding-top: 0;
+ padding-bottom: 0;
+ background-color: rgba(234,238,242,0.5);
+ border-color: rgba(27,31,36,0.15);
+ border-style: solid;
+ border-width: 1px;
+ color: #57606a;
+ max-width: 100%;
+ padding-right: 0;
+ position: relative;
+}
+
+.c4:hover {
+ background-color: rgba(175,184,193,0.2);
+ color: #24292f;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+
+
+
+ zero
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ one
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ two
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ three
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ four
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ five
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ six
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ seven
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+ ,
+ .c4 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-left: -0.25rem;
+ margin-bottom: -0.25rem;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c4 > * {
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ margin-left: 0.25rem;
+ margin-bottom: 0.25rem;
+}
+
+.c5 {
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c2 {
+ visibility: hidden;
+}
+
+.c10 {
+ visibility: visible;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ min-height: 28px;
+ padding-left: 8px;
+ padding-right: 8px;
+ padding-top: 3px;
+ padding-bottom: 3px;
+ font-size: 12px;
+ line-height: 20px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 12px;
+ padding-right: 12px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 0;
+ padding-right: 0;
+}
+
+.c6 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+ height: 100%;
+}
+
+.c6:focus {
+ outline: 0;
+}
+
+.c3 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: visible;
+ left: 0;
+}
+
+.c11 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: hidden;
+ right: 0;
+}
+
+.c9 {
+ background-color: transparent;
+ font-family: inherit;
+ color: currentColor;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ padding: 0;
+ -webkit-transform: translate(1px,-1px);
+ -ms-transform: translate(1px,-1px);
+ transform: translate(1px,-1px);
+ -webkit-align-self: baseline;
+ -ms-flex-item-align: baseline;
+ align-self: baseline;
+ border: 0;
+ border-radius: 999px;
+ margin-left: 4px;
+ height: 16px;
+ width: 16px;
+ position: relative;
+ z-index: 1;
+}
+
+.c9:hover,
+.c9:focus {
+ background-color: rgba(175,184,193,0.2);
+}
+
+.c9:active {
+ background-color: rgba(234,238,242,0.5);
+}
+
+.c8 {
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ min-width: 0;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ background: transparent;
+ border: none;
+ color: inherit;
+ font: inherit;
+ margin: 0;
+ overflow: visible;
+ padding: 0;
+ width: auto;
+ -webkit-font-smoothing: inherit;
+ -moz-osx-font-smoothing: inherit;
+ -webkit-appearance: none;
+ line-height: 1;
+ color: currentColor;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+}
+
+.c8:is(a,button,[tabIndex='0']) {
+ cursor: pointer;
+}
+
+.c8:is(a,button,[tabIndex='0']):after {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+}
+
+.c7 {
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ border-radius: 999px;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ font-weight: 600;
+ font-family: inherit;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ white-space: nowrap;
+ font-size: 12px;
+ height: 16px;
+ line-height: 16px;
+ padding-left: 4px;
+ padding-right: 4px;
+ padding-top: 0;
+ padding-bottom: 0;
+ background-color: rgba(234,238,242,0.5);
+ border-color: rgba(27,31,36,0.15);
+ border-style: solid;
+ border-width: 1px;
+ color: #57606a;
+ max-width: 100%;
+ padding-right: 0;
+ position: relative;
+}
+
+.c7:hover {
+ background-color: rgba(175,184,193,0.2);
+ color: #24292f;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+
+ zero
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={12}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={12}
+ />
+
+
+
+
+ one
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={12}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={12}
+ />
+
+
+
+
+ two
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={12}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={12}
+ />
+
+
+
+
+ three
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={12}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={12}
+ />
+
+
+
+
+ four
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={12}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={12}
+ />
+
+
+
+
+ five
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={12}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={12}
+ />
+
+
+
+
+ six
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={12}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={12}
+ />
+
+
+
+
+ seven
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={12}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={12}
+ />
+
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+ ,
+ .c4 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-left: -0.25rem;
+ margin-bottom: -0.25rem;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c4 > * {
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ margin-left: 0.25rem;
+ margin-bottom: 0.25rem;
+}
+
+.c5 {
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c2 {
+ visibility: hidden;
+}
+
+.c10 {
+ visibility: visible;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 12px;
+ padding-right: 12px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 0;
+ padding-right: 0;
+}
+
+.c6 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+ height: 100%;
+}
+
+.c6:focus {
+ outline: 0;
+}
+
+.c3 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: visible;
+ left: 0;
+}
+
+.c11 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: hidden;
+ right: 0;
+}
+
+.c9 {
+ background-color: transparent;
+ font-family: inherit;
+ color: currentColor;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ padding: 0;
+ -webkit-transform: translate(1px,-1px);
+ -ms-transform: translate(1px,-1px);
+ transform: translate(1px,-1px);
+ -webkit-align-self: baseline;
+ -ms-flex-item-align: baseline;
+ align-self: baseline;
+ border: 0;
+ border-radius: 999px;
+ margin-left: 8px;
+ height: 32px;
+ width: 32px;
+ position: relative;
+ z-index: 1;
+}
+
+.c9:hover,
+.c9:focus {
+ background-color: rgba(175,184,193,0.2);
+}
+
+.c9:active {
+ background-color: rgba(234,238,242,0.5);
+}
+
+.c8 {
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ min-width: 0;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ background: transparent;
+ border: none;
+ color: inherit;
+ font: inherit;
+ margin: 0;
+ overflow: visible;
+ padding: 0;
+ width: auto;
+ -webkit-font-smoothing: inherit;
+ -moz-osx-font-smoothing: inherit;
+ -webkit-appearance: none;
+ line-height: 1;
+ color: currentColor;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+}
+
+.c8:is(a,button,[tabIndex='0']) {
+ cursor: pointer;
+}
+
+.c8:is(a,button,[tabIndex='0']):after {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+}
+
+.c7 {
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ border-radius: 999px;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ font-weight: 600;
+ font-family: inherit;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ white-space: nowrap;
+ font-size: 14px;
+ height: 32px;
+ line-height: 32px;
+ padding-left: 16px;
+ padding-right: 16px;
+ padding-top: 0;
+ padding-bottom: 0;
+ background-color: rgba(234,238,242,0.5);
+ border-color: rgba(27,31,36,0.15);
+ border-style: solid;
+ border-width: 1px;
+ color: #57606a;
+ max-width: 100%;
+ padding-right: 0;
+ position: relative;
+}
+
+.c7:hover {
+ background-color: rgba(175,184,193,0.2);
+ color: #24292f;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+
+ zero
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ one
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ two
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ three
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ four
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ five
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ six
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+ seven
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={24}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 24 24"
+ width={24}
+ />
+
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+ ,
+ .c4 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-left: -0.25rem;
+ margin-bottom: -0.25rem;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c4 > * {
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ margin-left: 0.25rem;
+ margin-bottom: 0.25rem;
+}
+
+.c5 {
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+}
+
+.c1 {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.c10 {
+ visibility: hidden;
+}
+
+.c2 {
+ visibility: visible;
+}
+
+.c0 {
+ font-size: 14px;
+ line-height: 20px;
+ color: #24292f;
+ vertical-align: middle;
+ background-color: #ffffff;
+ border: 1px solid #d0d7de;
+ border-radius: 6px;
+ outline: none;
+ box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
+ cursor: text;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-align-items: stretch;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ min-height: 32px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+ background-repeat: no-repeat;
+ background-position: right 8px center;
+ padding-left: 12px;
+ padding-right: 12px;
+ padding-left: 12px;
+ padding-top: calc(12px / 2);
+ padding-bottom: calc(12px / 2);
+}
+
+.c0::-webkit-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::-moz-placeholder {
+ color: #6e7781;
+}
+
+.c0:-ms-input-placeholder {
+ color: #6e7781;
+}
+
+.c0::placeholder {
+ color: #6e7781;
+}
+
+.c0:focus-within {
+ border-color: #0969da;
+ box-shadow: 0 0 0 3px rgba(9,105,218,0.3);
+}
+
+.c0 > textarea {
+ padding: 12px;
+}
+
+.c0 >:not(:last-child) {
+ margin-right: 8px;
+}
+
+.c0 .TextInput-icon {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ color: #57606a;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c0 > input,
+.c0 > select {
+ padding-left: 0;
+ padding-right: 0;
+}
+
+.c6 {
+ border: 0;
+ font-size: inherit;
+ font-family: inherit;
+ background-color: transparent;
+ -webkit-appearance: none;
+ color: inherit;
+ width: 100%;
+ height: 100%;
+}
+
+.c6:focus {
+ outline: 0;
+}
+
+.c3 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: hidden;
+ left: 0;
+}
+
+.c11 {
+ -webkit-animation: rotate-keyframes 1s linear infinite;
+ animation: rotate-keyframes 1s linear infinite;
+ position: absolute;
+ top: 0;
+ height: 100%;
+ max-width: 100%;
+ visibility: visible;
+ right: 0;
+}
+
+.c9 {
+ background-color: transparent;
+ font-family: inherit;
+ color: currentColor;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ padding: 0;
+ -webkit-transform: translate(1px,-1px);
+ -ms-transform: translate(1px,-1px);
+ transform: translate(1px,-1px);
+ -webkit-align-self: baseline;
+ -ms-flex-item-align: baseline;
+ align-self: baseline;
+ border: 0;
+ border-radius: 999px;
+ margin-left: 8px;
+ height: 24px;
+ width: 24px;
+ position: relative;
+ z-index: 1;
+}
+
+.c9:hover,
+.c9:focus {
+ background-color: rgba(175,184,193,0.2);
+}
+
+.c9:active {
+ background-color: rgba(234,238,242,0.5);
+}
+
+.c8 {
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ min-width: 0;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ background: transparent;
+ border: none;
+ color: inherit;
+ font: inherit;
+ margin: 0;
+ overflow: visible;
+ padding: 0;
+ width: auto;
+ -webkit-font-smoothing: inherit;
+ -moz-osx-font-smoothing: inherit;
+ -webkit-appearance: none;
+ line-height: 1;
+ color: currentColor;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+}
+
+.c8:is(a,button,[tabIndex='0']) {
+ cursor: pointer;
+}
+
+.c8:is(a,button,[tabIndex='0']):after {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+}
+
+.c7 {
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ border-radius: 999px;
+ cursor: pointer;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ font-weight: 600;
+ font-family: inherit;
+ -webkit-text-decoration: none;
+ text-decoration: none;
+ white-space: nowrap;
+ font-size: 12px;
+ height: 24px;
+ line-height: 24px;
+ padding-left: 8px;
+ padding-right: 8px;
+ padding-top: 0;
+ padding-bottom: 0;
+ background-color: rgba(234,238,242,0.5);
+ border-color: rgba(27,31,36,0.15);
+ border-style: solid;
+ border-width: 1px;
+ color: #57606a;
+ max-width: 100%;
+ padding-right: 0;
+ position: relative;
+}
+
+.c7:hover {
+ background-color: rgba(175,184,193,0.2);
+ color: #24292f;
+}
+
+@media (min-width:768px) {
+ .c0 {
+ font-size: 14px;
+ }
+}
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+
+ zero
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={18}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={18}
+ />
+
+
+
+
+ one
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={18}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={18}
+ />
+
+
+
+
+ two
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={18}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={18}
+ />
+
+
+
+
+ three
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={18}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={18}
+ />
+
+
+
+
+ four
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={18}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={18}
+ />
+
+
+
+
+ five
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={18}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={18}
+ />
+
+
+
+
+ six
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={18}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={18}
+ />
+
+
+
+
+ seven
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={18}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={18}
+ />
+
+
+
+
+
+
+ ",
+ }
+ }
+ fill="currentColor"
+ height={16}
+ role="img"
+ style={
+ Object {
+ "display": "inline-block",
+ "overflow": "visible",
+ "userSelect": "none",
+ "verticalAlign": "text-bottom",
+ }
+ }
+ viewBox="0 0 16 16"
+ width={16}
+ />
+
+
+
+
+
+
+
+ ,
+]
+`;
+
exports[`TextInputWithTokens renders with tokens 1`] = `
.c1 {
display: -webkit-box;
diff --git a/src/stories/ActionMenu/fixtures.stories.tsx b/src/stories/ActionMenu/fixtures.stories.tsx
index 46d960a9ad3..8e74c3677f9 100644
--- a/src/stories/ActionMenu/fixtures.stories.tsx
+++ b/src/stories/ActionMenu/fixtures.stories.tsx
@@ -535,16 +535,26 @@ export function MemexAddColumn(): JSX.Element {
const [selectedIndex, setSelectedIndex] = React.useState(0)
const selectedType = fieldTypes[selectedIndex]
- const [duration, setDuration] = React.useState(1)
+ const [durationUnit, setDurationUnit] = React.useState('weeks')
return (
<>
Memex Add column
-
-
+
+
+ Column name
+
+
-
+
{selectedType.name}
@@ -564,22 +574,33 @@ export function MemexAddColumn(): JSX.Element {
Options
- Duration:
+
+ Duration:
+
+
+
- {duration} {duration > 1 ? 'weeks' : 'week'}
+ {durationUnit}
- {[1, 2, 3, 4, 5, 6].map(weeks => (
- setDuration(weeks)}>
- {weeks} {weeks > 1 ? 'weeks' : 'week'}
-
- ))}
+ setDurationUnit('weeks')}>
+ weeks
+
+ setDurationUnit('days')}>
+ days
+
diff --git a/src/stories/TextInput.stories.tsx b/src/stories/TextInput.stories.tsx
index c9a06c451f0..c4f102f2161 100644
--- a/src/stories/TextInput.stories.tsx
+++ b/src/stories/TextInput.stories.tsx
@@ -3,7 +3,7 @@ import {Meta} from '@storybook/react'
import {BaseStyles, Box, ThemeProvider, Text} from '..'
import TextInput, {TextInputProps} from '../TextInput'
-import {CheckIcon} from '@primer/octicons-react'
+import {CalendarIcon, CheckIcon} from '@primer/octicons-react'
export default {
title: 'Forms/Text Input',
@@ -39,6 +39,21 @@ export default {
type: 'boolean'
}
},
+ loading: {
+ name: 'loading',
+ defaultValue: false,
+ control: {
+ type: 'boolean'
+ }
+ },
+ loaderPosition: {
+ name: 'loaderPosition',
+ defaultValue: 'auto',
+ options: ['auto', 'leading', 'trailing'],
+ control: {
+ type: 'radio'
+ }
+ },
monospace: {
name: 'Monospace',
defaultValue: false,
@@ -145,6 +160,89 @@ export const WithTrailingIcon = (args: TextInputProps) => {
)
}
+export const WithLoadingIndicator = () => {
+ const [loading, setLoading] = React.useState(true)
+
+ const toggleLoadingState = () => {
+ setLoading(!loading)
+ }
+
+ return (
+ <>
+
+
+ Toggle loading state {loading ? 'off' : 'on'}
+
+
+
+ No visual
+
+
+
+
+
+
+
+
+
+
+ Leading visual
+
+
+
+
+
+
+
+
+
+
+ Trailing visual
+
+
+
+
+
+
+
+
+
+
+ Both visuals
+
+
+
+
+
+
+
+
+
+ >
+ )
+}
+
+WithLoadingIndicator.parameters = {controls: {exclude: ['loading']}}
+
export const ContrastTextInput = (args: TextInputProps) => {
const [value, setValue] = useState('')
diff --git a/src/stories/TextInputWithTokens.stories.tsx b/src/stories/TextInputWithTokens.stories.tsx
index b02db775a99..084d3179f90 100644
--- a/src/stories/TextInputWithTokens.stories.tsx
+++ b/src/stories/TextInputWithTokens.stories.tsx
@@ -2,7 +2,7 @@ import React, {useCallback, useState} from 'react'
import {Meta} from '@storybook/react'
import {CheckIcon, NumberIcon} from '@primer/octicons-react'
-import {BaseStyles, Box, ThemeProvider} from '..'
+import {BaseStyles, Box, FormControl, ThemeProvider} from '..'
import TextInputWithTokens, {TextInputWithTokensProps} from '../TextInputWithTokens'
import IssueLabelToken from '../Token/IssueLabelToken'
@@ -47,6 +47,21 @@ export default {
type: 'boolean'
}
},
+ loading: {
+ name: 'loading',
+ defaultValue: false,
+ control: {
+ type: 'boolean'
+ }
+ },
+ loaderPosition: {
+ name: 'loaderPosition',
+ defaultValue: 'auto',
+ options: ['auto', 'leading', 'trailing'],
+ control: {
+ type: 'radio'
+ }
+ },
size: {
name: 'size (token size)',
defaultValue: 'extralarge',
@@ -121,6 +136,59 @@ export const WithTrailingVisual = (args: TextInputWithTokensProps) => {
WithTrailingVisual.parameters = {controls: {exclude: [excludedControls, 'maxHeight']}}
+export const WithLoadingIndicator = (args: TextInputWithTokensProps) => {
+ const [tokens, setTokens] = useState([...mockTokens].slice(0, 3))
+ const [loading, setLoading] = useState(true)
+ const onTokenRemove: (tokenId: string | number) => void = tokenId => {
+ setTokens(tokens.filter(token => token.id !== tokenId))
+ }
+ const toggleLoadingState = () => {
+ setLoading(!loading)
+ }
+
+ return (
+
+ )
+}
+
+WithLoadingIndicator.parameters = {controls: {exclude: [excludedControls, 'maxHeight', 'loading']}}
+
export const UsingIssueLabelTokens = (args: TextInputWithTokensProps) => {
const [tokens, setTokens] = useState([
{text: 'enhancement', id: 1, fillColor: '#a2eeef'},
diff --git a/src/stories/Tooltip.stories.tsx b/src/stories/Tooltip.stories.tsx
new file mode 100644
index 00000000000..59d034282f1
--- /dev/null
+++ b/src/stories/Tooltip.stories.tsx
@@ -0,0 +1,37 @@
+import React from 'react'
+import {Meta} from '@storybook/react'
+import {BaseStyles, ThemeProvider, IconButton} from '..'
+import Box from '../Box'
+import Tooltip from '../Tooltip'
+import {SearchIcon} from '@primer/octicons-react'
+
+export default {
+ title: 'Tooltip/Default',
+ component: Tooltip,
+
+ decorators: [
+ Story => {
+ return (
+
+
+
+
+
+ )
+ }
+ ]
+} as Meta
+
+export const TextTooltip = () => (
+
+ Text with a tooltip
+
+)
+
+export const IconButtonTooltip = () => (
+
+
+
+
+
+)