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