12345678910111213141516171819202122 |
- import '../_util/assert-component2';
- Component({
- properties: {
- type: {
- value: '',
- type: String,
- },
- color: {
- type: String,
- },
- style: {
- type: String,
- },
- className: {
- type: String,
- },
- },
- options: {
- //@ts-ignore
- styleIsolation: 'shared',
- },
- });
|