@@ -165,7 +156,7 @@ export const GetStarted = ({ lead }: Props) => {
if (!pubKey) {
return (
-
+
You need a{' '}
Vega wallet
@@ -186,3 +177,34 @@ export const GetStarted = ({ lead }: Props) => {
return null;
};
+
+const Step = ({
+ step,
+ text,
+ complete,
+}: {
+ step: number;
+ text: string;
+ complete: boolean;
+}) => {
+ return (
+
+
+ {complete ? : {step}.}
+
+ {text}
+
+ );
+};
+
+const Tick = () => {
+ return (
+
+
+
+ );
+};
diff --git a/libs/ui-toolkit/src/components/icon/vega-icons/vega-icon.tsx b/libs/ui-toolkit/src/components/icon/vega-icons/vega-icon.tsx
index cc48b741f..3a240d6ab 100644
--- a/libs/ui-toolkit/src/components/icon/vega-icons/vega-icon.tsx
+++ b/libs/ui-toolkit/src/components/icon/vega-icons/vega-icon.tsx
@@ -5,7 +5,7 @@ import { VegaIconNameMap } from './vega-icon-record';
export interface VegaIconProps {
name: VegaIconNames;
- size?: 8 | 10 | 12 | 13 | 14 | 16 | 20 | 24 | 32;
+ size?: 8 | 10 | 12 | 13 | 14 | 16 | 18 | 20 | 24 | 32;
}
export const VegaIcon = ({ size = 16, name }: VegaIconProps) => {