From 3aabddd628454f111047a51d6230fee47a3f061d Mon Sep 17 00:00:00 2001 From: Adenekan Wonderful Date: Mon, 26 Dec 2022 16:46:48 +0100 Subject: [PATCH] (chore): added scoutbar tutorial icons in its seperate concern --- src/components/scout-tutorial/index.tsx | 53 +++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 src/components/scout-tutorial/index.tsx diff --git a/src/components/scout-tutorial/index.tsx b/src/components/scout-tutorial/index.tsx new file mode 100644 index 0000000..c072ba3 --- /dev/null +++ b/src/components/scout-tutorial/index.tsx @@ -0,0 +1,53 @@ +import React from 'react'; +import { ScoutBarProps } from 'scoutbar'; + +import { TutorialIcon } from 'components/icon/svg/tutorial'; +import ScoutBarLogo from 'components/icon/svg/logo'; + +const ScoutTutorial: React.FC> = ({ + brandColor, + acknowledgement, +}) => ( +
+ {acknowledgement && ( +
+

+ Powered by +

+
+ )} +
+

+ + + TAB + + or{' '} + + + + + + + to navigate +

+
+
+

+ + + RETURN + + to Select +

+
+
+

+ ESC + to cancel +

+
+
+); + +export default ScoutTutorial;