2023-12-05 17:00:55 +08:00
|
|
|
export default {
|
|
|
|
name: 'KilnLine',
|
|
|
|
props: ['horizontal'],
|
|
|
|
render: function (h) {
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
class="line"
|
|
|
|
style={{
|
2023-12-06 09:47:06 +08:00
|
|
|
width: this.horizontal ? '100%' : '4px',
|
|
|
|
height: this.horizontal ? '4px' : '100%',
|
2023-12-05 17:00:55 +08:00
|
|
|
background:
|
2023-12-06 09:47:06 +08:00
|
|
|
'radial-gradient(ellipse at center, #3CE7FF, #3CE7FF66, transparent, transparent)',
|
2023-12-05 17:00:55 +08:00
|
|
|
}}></div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
};
|