-
Notifications
You must be signed in to change notification settings - Fork 4.5k
chore: Adding missing function in cypress git sync helper and syncing the common file across the two repositories. #33360
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,21 +1,25 @@ | ||
| { | ||
| "plugins": [ | ||
| ["module-resolver", { | ||
| "root": ["./src"], | ||
| "alias": { | ||
| "utils": "./src/utils/", | ||
| "test/*": ["../test/*"], | ||
| "underscore": "lodash", | ||
| "constants": "./src/constants/", | ||
| "components": "./src/components/", | ||
| "selectors": "./src/selectors/", | ||
| "reducers": "./src/reducers/", | ||
| "actions":"./src/actions/", | ||
| "api": "./src/api/", | ||
| "assets": "./src/assets/", | ||
| "sagas": "./src/sagas/", | ||
| "@appsmith": "./src/ee" | ||
| } | ||
| }, "babel-plugin-styled-components"] | ||
| [ | ||
| "module-resolver", | ||
| { | ||
| "root": ["./src"], | ||
| "alias": { | ||
| "utils": "./src/utils/", | ||
| "test/*": ["../test/*"], | ||
| "underscore": "lodash", | ||
| "constants": "./src/constants/", | ||
| "components": "./src/components/", | ||
| "selectors": "./src/selectors/", | ||
| "reducers": "./src/reducers/", | ||
| "actions": "./src/actions/", | ||
| "api": "./src/api/", | ||
| "assets": "./src/assets/", | ||
| "sagas": "./src/sagas/", | ||
| "@appsmith": "./src/ee" | ||
| } | ||
| }, | ||
| "babel-plugin-styled-components" | ||
| ] | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,9 @@ | ||
| { | ||
| "printWidth": 80, | ||
| "tabWidth": 2, | ||
| "useTabs": false, | ||
| "semi": true, | ||
| "singleQuote": false, | ||
| "trailingComma": "all", | ||
| "arrowParens": "always" | ||
| "printWidth": 80, | ||
| "tabWidth": 2, | ||
| "useTabs": false, | ||
| "semi": true, | ||
| "singleQuote": false, | ||
| "trailingComma": "all", | ||
| "arrowParens": "always" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,22 +1,22 @@ | ||
| module.exports = { | ||
| name: `plugin-dedupe-on-install`, | ||
| factory: (require) => { | ||
| const {execute} = require('@yarnpkg/shell') | ||
| const { execute } = require("@yarnpkg/shell"); | ||
| return { | ||
| hooks: { | ||
| // yarn / yarn install / yarn add / yarn dedupe -> afterAllInstalled | ||
| async afterAllInstalled() { | ||
| // use env var to prevent infinite loops | ||
| if (!process.env.DEDUPED && !process.argv.includes('dedupe')) { | ||
| process.env.DEDUPED = 'yes' | ||
| if (!process.env.DEDUPED && !process.argv.includes("dedupe")) { | ||
| process.env.DEDUPED = "yes"; | ||
| // fast check for duplicates | ||
| if (await execute('yarn dedupe --check')) { | ||
| if (await execute("yarn dedupe --check")) { | ||
| // run actual dedupe/link step | ||
| await execute('yarn dedupe') | ||
| await execute("yarn dedupe"); | ||
| } | ||
| } | ||
| }, | ||
| }, | ||
| } | ||
| }; | ||
| }, | ||
| } | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| # Appsmith Client | ||
|
|
||
| This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). | ||
| <br><br> | ||
| <br><br> | ||
| For details on setting up your development machine, please refer to the [Setup Guide](../../contributions/ClientSetup.md) | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 5 additions & 9 deletions
14
app/client/generators/widget/templates/component/index.js.hbs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,5 @@ | ||
| import React from "react"; | ||
|
|
||
| function {{name}}Component(props: {{name}}ComponentProps) { | ||
| return null; | ||
| } | ||
|
|
||
| export interface {{name}}ComponentProps {} | ||
|
|
||
| export default {{name}}Component; | ||
| import React from "react"; function | ||
| {{name}}Component(props: | ||
| {{name}}ComponentProps) { return null; } export interface | ||
| {{name}}ComponentProps {} export default | ||
| {{name}}Component; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,3 @@ | ||
| // This file contains common constants which can be used across the widget configuration file (index.ts), widget and component folders. | ||
| export const {{widgetTypeFormat name}}_CONSTANT = ""; | ||
| // This file contains common constants which can be used across the widget | ||
| configuration file (index.ts), widget and component folders. export const | ||
| {{widgetTypeFormat name}}_CONSTANT = ""; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,15 @@ | ||
| <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><rect width="22" height="22" x="1" y="1" stroke="#fff" stroke-dasharray="3 1" stroke-width="2"/></svg> | ||
| <svg | ||
| xmlns="http://www.w3.org/2000/svg" | ||
| width="24" | ||
| height="24" | ||
| fill="none" | ||
| viewBox="0 0 24 24" | ||
| ><rect | ||
| width="22" | ||
| height="22" | ||
| x="1" | ||
| y="1" | ||
| stroke="#fff" | ||
| stroke-dasharray="3 1" | ||
| stroke-width="2" | ||
| /></svg> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1 @@ | ||
| import Widget from "./widget"; | ||
|
|
||
| export default Widget; | ||
| import Widget from "./widget"; export default Widget; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 23 additions & 1 deletion
24
app/client/packages/icons/src/components/Icons/ButtonIcon.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,24 @@ | ||
| import React from "react"; | ||
| export const ButtonIcon = () => <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-opacity=".25" d="M14.5 8.5v3a2 2 0 0 1-2 2h-10a2 2 0 0 1-2-2v-3"/><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="M12.5 2.5h-10a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2"/><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="M8.5 5.5v2m0 2v-2m3-2L9.793 7.207a1 1 0 0 1-.707.293H8.5M8.5 9.5v-4m3 4-2-2M3.5 8V7a1.5 1.5 0 1 1 3 0v1a1.5 1.5 0 1 1-3 0"/></svg>; | ||
| export const ButtonIcon = () => ( | ||
| <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="round" | ||
| stroke-linejoin="round" | ||
| stroke-opacity=".25" | ||
| d="M14.5 8.5v3a2 2 0 0 1-2 2h-10a2 2 0 0 1-2-2v-3" | ||
| /> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="round" | ||
| stroke-linejoin="round" | ||
| d="M12.5 2.5h-10a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2" | ||
| /> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="round" | ||
| stroke-linejoin="round" | ||
| d="M8.5 5.5v2m0 2v-2m3-2L9.793 7.207a1 1 0 0 1-.707.293H8.5M8.5 9.5v-4m3 4-2-2M3.5 8V7a1.5 1.5 0 1 1 3 0v1a1.5 1.5 0 1 1-3 0" | ||
| /> | ||
| </svg> | ||
| ); |
17 changes: 16 additions & 1 deletion
17
app/client/packages/icons/src/components/Icons/CheckboxGroupIcon.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,17 @@ | ||
| import React from "react"; | ||
| export const CheckboxGroupIcon = () => <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="M5 6.5H2A1.5 1.5 0 0 1 .5 5V2A1.5 1.5 0 0 1 2 .5h3A1.5 1.5 0 0 1 6.5 2v3A1.5 1.5 0 0 1 5 6.5"/><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="m2.5 3.5 1 1 1-2M8.5 2.5h6M8.5 12.5h4M5 14.5H2A1.5 1.5 0 0 1 .5 13v-3A1.5 1.5 0 0 1 2 8.5h3A1.5 1.5 0 0 1 6.5 10v3A1.5 1.5 0 0 1 5 14.5M8.5 4.5h4M8.5 10.5h6"/></svg>; | ||
| export const CheckboxGroupIcon = () => ( | ||
| <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="round" | ||
| stroke-linejoin="round" | ||
| d="M5 6.5H2A1.5 1.5 0 0 1 .5 5V2A1.5 1.5 0 0 1 2 .5h3A1.5 1.5 0 0 1 6.5 2v3A1.5 1.5 0 0 1 5 6.5" | ||
| /> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="round" | ||
| stroke-linejoin="round" | ||
| d="m2.5 3.5 1 1 1-2M8.5 2.5h6M8.5 12.5h4M5 14.5H2A1.5 1.5 0 0 1 .5 13v-3A1.5 1.5 0 0 1 2 8.5h3A1.5 1.5 0 0 1 6.5 10v3A1.5 1.5 0 0 1 5 14.5M8.5 4.5h4M8.5 10.5h6" | ||
| /> | ||
| </svg> | ||
| ); |
17 changes: 16 additions & 1 deletion
17
app/client/packages/icons/src/components/Icons/CheckboxIcon.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,17 @@ | ||
| import React from "react"; | ||
| export const CheckboxIcon = () => <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="M11.5 1.5h-8a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2"/><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="m4.5 7.5 2 2 4-4"/></svg>; | ||
| export const CheckboxIcon = () => ( | ||
| <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="round" | ||
| stroke-linejoin="round" | ||
| d="M11.5 1.5h-8a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2" | ||
| /> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="round" | ||
| stroke-linejoin="round" | ||
| d="m4.5 7.5 2 2 4-4" | ||
| /> | ||
| </svg> | ||
| ); |
24 changes: 23 additions & 1 deletion
24
app/client/packages/icons/src/components/Icons/CurrencyInputIcon.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,24 @@ | ||
| import React from "react"; | ||
| export const CurrencyInputIcon = () => <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="M7.5 5.5h-3a1 1 0 0 0-1 1v0a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v0a1 1 0 0 1-1 1h-3M5.5 10.5v-6"/><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-opacity=".25" d="M12.5 6.5h1m1 0h-1m0 0v8m-1 0h2"/><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="M14.5 2.5h-12a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h7"/></svg>; | ||
| export const CurrencyInputIcon = () => ( | ||
| <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="round" | ||
| stroke-linejoin="round" | ||
| d="M7.5 5.5h-3a1 1 0 0 0-1 1v0a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v0a1 1 0 0 1-1 1h-3M5.5 10.5v-6" | ||
| /> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="round" | ||
| stroke-linejoin="round" | ||
| stroke-opacity=".25" | ||
| d="M12.5 6.5h1m1 0h-1m0 0v8m-1 0h2" | ||
| /> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="round" | ||
| stroke-linejoin="round" | ||
| d="M14.5 2.5h-12a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h7" | ||
| /> | ||
| </svg> | ||
| ); |
11 changes: 10 additions & 1 deletion
11
app/client/packages/icons/src/components/Icons/HeadingIcon.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,11 @@ | ||
| import React from "react"; | ||
| export const HeadingIcon = () => <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="M.5 1.5h2m2 0h-2m0 0v12m-2 0h4M10.5 1.5h2m2 0h-2m0 0v12m-2 0h4M2.5 7.5h10"/></svg>; | ||
| export const HeadingIcon = () => ( | ||
| <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="round" | ||
| stroke-linejoin="round" | ||
| d="M.5 1.5h2m2 0h-2m0 0v12m-2 0h4M10.5 1.5h2m2 0h-2m0 0v12m-2 0h4M2.5 7.5h10" | ||
| /> | ||
| </svg> | ||
| ); |
19 changes: 18 additions & 1 deletion
19
app/client/packages/icons/src/components/Icons/IconButtonIcon.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,19 @@ | ||
| import React from "react"; | ||
| export const IconButtonIcon = () => <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="M12.5 2.5h-10a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2"/><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-opacity=".25" d="M14.5 8.5v3a2 2 0 0 1-2 2h-10a2 2 0 0 1-2-2v-3"/><path stroke="#000" stroke-linecap="round" d="M5.5 7.5h4M7.5 9.5v-4"/></svg>; | ||
| export const IconButtonIcon = () => ( | ||
| <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="round" | ||
| stroke-linejoin="round" | ||
| d="M12.5 2.5h-10a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2" | ||
| /> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="round" | ||
| stroke-linejoin="round" | ||
| stroke-opacity=".25" | ||
| d="M14.5 8.5v3a2 2 0 0 1-2 2h-10a2 2 0 0 1-2-2v-3" | ||
| /> | ||
| <path stroke="#000" stroke-linecap="round" d="M5.5 7.5h4M7.5 9.5v-4" /> | ||
| </svg> | ||
| ); |
17 changes: 16 additions & 1 deletion
17
app/client/packages/icons/src/components/Icons/InlineButtonsIcon.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,17 @@ | ||
| import React from "react"; | ||
| export const InlineButtonsIcon = () => <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"><path stroke="#000" stroke-linecap="square" stroke-opacity=".25" d="M8.5 8.5v1a2 2 0 0 0 2 2h3a2 2 0 0 0 2-2v-1M7.5 8.5v1a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-1"/><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="M13.5 3.5h-3a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h3a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2M2.5 3.5h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2"/></svg>; | ||
| export const InlineButtonsIcon = () => ( | ||
| <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="square" | ||
| stroke-opacity=".25" | ||
| d="M8.5 8.5v1a2 2 0 0 0 2 2h3a2 2 0 0 0 2-2v-1M7.5 8.5v1a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-1" | ||
| /> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="round" | ||
| stroke-linejoin="round" | ||
| d="M13.5 3.5h-3a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h3a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2M2.5 3.5h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2" | ||
| /> | ||
| </svg> | ||
| ); |
24 changes: 23 additions & 1 deletion
24
app/client/packages/icons/src/components/Icons/InputIcon.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,24 @@ | ||
| import React from "react"; | ||
| export const InputIcon = () => <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="m7.5 9.5-.5-1m-3.5 1 .5-1m0 0 1.5-3 1.5 3m-3 0h3"/><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-opacity=".25" d="M12.5 6.5h1m1 0h-1m0 0v8m-1 0h2"/><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="M14.5 2.5h-12a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h7"/></svg>; | ||
| export const InputIcon = () => ( | ||
| <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none"> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="round" | ||
| stroke-linejoin="round" | ||
| d="m7.5 9.5-.5-1m-3.5 1 .5-1m0 0 1.5-3 1.5 3m-3 0h3" | ||
| /> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="round" | ||
| stroke-linejoin="round" | ||
| stroke-opacity=".25" | ||
| d="M12.5 6.5h1m1 0h-1m0 0v8m-1 0h2" | ||
| /> | ||
| <path | ||
| stroke="#000" | ||
| stroke-linecap="round" | ||
| stroke-linejoin="round" | ||
| d="M14.5 2.5h-12a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h7" | ||
| /> | ||
| </svg> | ||
| ); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.