We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b5b7aa commit adc04c0Copy full SHA for adc04c0
src/components/AppBar/AppBar.stories.js
@@ -1,5 +1,4 @@
1
import React from 'react';
2
-
3
import {
4
AppBar,
5
Toolbar,
@@ -9,8 +8,7 @@ import {
9
8
ListItem,
10
Divider
11
} from 'react95';
12
13
-import LogoIcon from '../Icon/LogoIcon';
+import logoIMG from '../assets/images/logo.png';
14
15
export default {
16
title: 'AppBar',
@@ -41,7 +39,11 @@ export const Default = () => {
41
39
active={open}
42
40
style={{ fontWeight: 'bold' }}
43
>
44
- <LogoIcon style={{ marginLeft: -2, marginRight: 4 }} />
+ <img
+ src={logoIMG}
+ alt='react95 logo'
45
+ style={{ height: '20px', marginRight: 4 }}
46
+ />
47
Start
48
</Button>
49
{open && (
src/components/Icon/LogoIcon.js
0 commit comments