File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ export { default as IconAccountBalance } from "./icons/IconAccountBalance.svelte
22export { default as IconAccountsPage } from "./icons/IconAccountsPage.svelte" ;
33export { default as IconAdd } from "./icons/IconAdd.svelte" ;
44export { default as IconAddCircle } from "./icons/IconAddCircle.svelte" ;
5+ export { default as IconArrowsSwitch } from "./icons/IconArrowsSwitch.svelte" ;
56export { default as IconBack } from "./icons/IconBack.svelte" ;
67export { default as IconBin } from "./icons/IconBin.svelte" ;
78export { default as IconCanistersPage } from "./icons/IconCanistersPage.svelte" ;
Original file line number Diff line number Diff line change 1+ <!-- source: DFINITY foundation -->
2+ <script lang =" ts" >
3+ import { DEFAULT_ICON_SIZE } from " $lib/constants/constants" ;
4+
5+ export let size = ` ${DEFAULT_ICON_SIZE }px ` ;
6+ </script >
7+
8+ <svg
9+ xmlns =" http://www.w3.org/2000/svg"
10+ width ={size }
11+ height ={size }
12+ viewBox =" 0 0 20 20"
13+ fill =" none"
14+ stroke =" currentColor"
15+ stroke-width =" 1.5"
16+ stroke-linecap =" round"
17+ stroke-linejoin =" round"
18+ >
19+ <path d =" M15.006 18.3319V4.71411" />
20+ <path d =" M19.0838 14.2357L15.006 18.3324L10.9282 14.2357" />
21+ <path d =" M5.07777 2.00061V15.6184" />
22+ <path d =" M1 6.09667L5.07778 2L9.15556 6.09667" />
23+ </svg >
You can’t perform that action at this time.
0 commit comments