Skip to content

Commit

Permalink
feat(Actions): Add others
Browse files Browse the repository at this point in the history
  • Loading branch information
JF-Cozy committed Jan 23, 2024
1 parent ec4acf6 commit 0186834
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions react/ActionsMenu/Actions/index.js
Expand Up @@ -6,3 +6,4 @@ export { call } from './call'
export { emailTo } from './emailTo'
export { print } from './print'
export { viewInContacts } from './viewInContacts'
export { others } from './others'
13 changes: 13 additions & 0 deletions react/ActionsMenu/Actions/others.jsx
@@ -0,0 +1,13 @@
import DotsIcon from '../../Icons/Dots'

import { getActionsI18n } from './locales/withActionsLocales'

export const others = () => {
const { t } = getActionsI18n()

return {
name: 'others',
label: t('others'),
icon: DotsIcon
}
}

0 comments on commit 0186834

Please sign in to comment.