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
|
|
|
}
|