1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/helpers/ui-btn-span.js
2019-02-24 11:19:22 +07:00

8 lines
226 B
JavaScript

import {btnStyles} from './ui-btn';
import {helper} from '@ember/component/helper';
export function uiBtnSpan([style], hash) {
return btnStyles(Object.assign({}, {style}, hash)).span;
}
export default helper(uiBtnSpan);