File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ import { LabIcon } from '@jupyterlab/ui-components';
22import bluetoothConnectSvgstr from '../..//style/bluetoothConnect.svg' ;
33import bluetoothDisconnectSvgstr from '../..//style/bluetoothDisconnect.svg' ;
44import LegoBrickSvgstr from '../..//style/LegoBrick.svg' ;
5+ import Studs1Svgstr from '../..//style/studs1.svg' ;
6+ import Studs2Svgstr from '../..//style/studs1.svg' ;
7+ import StudsYellowSvgstr from '../..//style/studs-yellow.svg' ;
58import GreenCircleSvgstr from '../../style/green-circle.svg' ;
69import RedCircleSvgstr from '../../style/red-circle.svg' ;
710
@@ -20,6 +23,21 @@ export const LegoBrickIcon = new LabIcon({
2023 svgstr : LegoBrickSvgstr
2124} ) ;
2225
26+ export const Studs1Icon = new LabIcon ( {
27+ name : '@jupyterlab/bluetooh-manager:bluetooth-studs1' ,
28+ svgstr : Studs1Svgstr
29+ } ) ;
30+
31+ export const Studs2Icon = new LabIcon ( {
32+ name : '@jupyterlab/bluetooh-manager:bluetooth-studs1' ,
33+ svgstr : Studs2Svgstr
34+ } ) ;
35+
36+ export const StudsYellowIcon = new LabIcon ( {
37+ name : '@jupyterlab/bluetooh-manager:bluetooth-studs-yellow' ,
38+ svgstr : StudsYellowSvgstr
39+ } ) ;
40+
2341export const GreenCircle = new LabIcon ( {
2442 name : '@jupyterlab/bluetooh-manager:bluetooth-green-circle' ,
2543 svgstr : GreenCircleSvgstr
Original file line number Diff line number Diff line change 1- import { useState } from 'react' ;
21import copySVG from '../../../style/copy.svg' ;
32const copySVGUrl = `data:image/svg+xml;base64,${ btoa ( copySVG ) } ` ;
43
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import {
1212} from '../bluetooth/BluetoothManager' ;
1313import { MoveHub } from './moveHub' ;
1414import ipymovehubPlugin from './plugin' ;
15+ /*import { LegoBrickIcon } from '../bluetooth/icon';*/
1516import { LegoBrickIcon } from '../bluetooth/icon' ;
1617import { MoveHubPanelWidget } from './components/MoveHubPanel' ;
1718import { LegoBuildSelectorWidget } from './components/LegoBuildSelector' ;
You can’t perform that action at this time.
0 commit comments