Skip to content

Commit 59cb7e4

Browse files
author
Jovert Lota Palonpon
committed
wip
1 parent 7322be4 commit 59cb7e4

File tree

3 files changed

+5
-14
lines changed

3 files changed

+5
-14
lines changed

resources/js/icons/1x1/LightbulbOff.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,8 @@ import React from 'react';
22
import { SvgIcon } from '@material-ui/core';
33

44
const LightbulbOn = props => (
5-
<SvgIcon
6-
{...props}
7-
viewBox="0 0 24 24"
8-
>
9-
<path d="M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7zm2.85 11.1l-.85.6V16h-4v-2.3l-.85-.6C7.8 12.16 7 10.63 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.63-.8 3.16-2.15 4.1z"></path>
5+
<SvgIcon {...props} viewBox="0 0 24 24">
6+
<path d="M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7zm2.85 11.1l-.85.6V16h-4v-2.3l-.85-.6C7.8 12.16 7 10.63 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.63-.8 3.16-2.15 4.1z" />
107
</SvgIcon>
118
);
129

resources/js/icons/1x1/LightbulbOn.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,9 @@ import React from 'react';
22
import { SvgIcon } from '@material-ui/core';
33

44
const LightbulbOn = props => (
5-
<SvgIcon
6-
{...props}
7-
viewBox="0 0 24 24"
8-
>
5+
<SvgIcon {...props} viewBox="0 0 24 24">
96
<path d="m9,21c0,0.55 0.45,1 1,1l4,0c0.55,0 1,-0.45 1,-1l0,-1l-6,0l0,1zm3,-19c-3.86,0 -7,3.14 -7,7c0,2.38 1.19,4.47 3,5.74l0,2.26c0,0.55 0.45,1 1,1l6,0c0.55,0 1,-0.45 1,-1l0,-2.26c1.81,-1.27 3,-3.36 3,-5.74c0,-3.86 -3.14,-7 -7,-7z" />
107
</SvgIcon>
118
);
129

13-
export default LightbulbOn;
10+
export default LightbulbOn;

resources/js/routers/backoffice.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,31 +6,28 @@ export default [
66
name: 'home',
77
path: '/',
88
component: Home,
9-
auth: true,
109
},
1110

1211
{
1312
name: 'users.index',
1413
path: '/users',
1514
component: Users.List,
16-
auth: true,
1715
},
1816

1917
{
2018
name: 'users.create',
2119
path: '/users/create',
2220
component: Users.Create,
23-
auth: true,
2421
},
2522

2623
{
2724
name: 'users.edit',
2825
path: '/users/:id/edit',
2926
component: Users.Edit,
30-
auth: true,
3127
},
3228
].map(route => {
3329
route.name = `backoffice.${route.name}`;
30+
route.auth = true;
3431

3532
return route;
3633
});

0 commit comments

Comments
 (0)