17 lines
359 B
JavaScript
17 lines
359 B
JavaScript
export default {
|
|
name: 'KilnLine',
|
|
props: ['horizontal'],
|
|
render: function (h) {
|
|
return (
|
|
<div
|
|
class="line"
|
|
style={{
|
|
width: this.horizontal ? '100%' : '4px',
|
|
height: this.horizontal ? '4px' : '100%',
|
|
background:
|
|
'radial-gradient(ellipse at center, #3CE7FF, #3CE7FF66, transparent, transparent)',
|
|
}}></div>
|
|
);
|
|
},
|
|
};
|