Ghost/ghost/admin/app/helpers/ui-btn-span.js

9 lines
226 B
JavaScript
Raw Normal View History

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