UNPKG

sce-component

Version:

17 lines (14 loc) 366 B
export default { name: 's-item-separator', functional: true, props: { inset: Boolean }, render (h, ctx) { const data = ctx.data, cls = data.staticClass data.staticClass = `s-item-separator-component${ctx.props.inset ? ' s-item-separator-inset-component' : ''}${cls ? ` ${cls}` : ''}` return h('div', data, ctx.children) } }