mirror of
https://github.com/ascribe/onion.git
synced 2025-01-05 11:25:09 +01:00
13 lines
310 B
JavaScript
13 lines
310 B
JavaScript
'use strict';
|
|
|
|
import AclButton from './acl_button';
|
|
|
|
import { getLangText } from '../../../utils/lang';
|
|
|
|
export default AclButton({
|
|
action: 'acl_transfer',
|
|
displayName: 'TransferButton',
|
|
title: getLangText('Transfer artwork'),
|
|
tooltip: getLangText('Transfer the ownership of the artwork')
|
|
});
|