Ghost/ghost/admin/app/helpers/ui-btn-span.js
2019-02-24 11:19:22 +07:00

9 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);