quintodrome/ui/src/share/index.jsx

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
454 B
React
Raw Normal View History

2023-01-19 18:52:55 -09:00
import ShareList from './ShareList'
import { ShareEdit } from './ShareEdit'
import ShareIcon from '@material-ui/icons/Share'
2023-01-23 06:22:11 -09:00
import ShareOutlinedIcon from '@material-ui/icons/ShareOutlined'
import DynamicMenuIcon from '../layout/DynamicMenuIcon'
import React from 'react'
2023-01-19 18:52:55 -09:00
export default {
list: ShareList,
edit: ShareEdit,
2023-01-23 06:22:11 -09:00
icon: (
<DynamicMenuIcon
path={'share'}
icon={ShareOutlinedIcon}
activeIcon={ShareIcon}
/>
),
2023-01-19 18:52:55 -09:00
}