-
Notifications
You must be signed in to change notification settings - Fork 504
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
copy and paste feature. onSelectedCell fcn provides the index to save…
… cell data into jotai
- Loading branch information
1 parent
6f4c74f
commit c9e7c9f
Showing
6 changed files
with
88 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon"; | ||
import { mdiContentPaste } from "@mdi/js"; | ||
|
||
export default function Paste(props: SvgIconProps) { | ||
return ( | ||
<SvgIcon {...props}> | ||
<path d={mdiContentPaste} /> | ||
</SvgIcon> | ||
); | ||
} |
This file contains 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon"; | ||
import { mdiClipboardArrowDownOutline } from "@mdi/js"; | ||
|
||
export default function PasteFromClipboard(props: SvgIconProps) { | ||
return ( | ||
<SvgIcon {...props}> | ||
<path d={mdiClipboardArrowDownOutline} /> | ||
</SvgIcon> | ||
); | ||
} |
This file contains 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 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 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 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