File tree 1 file changed +9
-5
lines changed
packages/uui-symbol-more/lib
1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
- import { LitElement , html , css } from 'lit' ;
1
+ import { LitElement , svg , css } from 'lit' ;
2
2
import { defineElement } from '@umbraco-ui/uui-base/lib/registration' ;
3
3
/**
4
4
* @element uui-symbol-more
5
5
*/
6
6
@defineElement ( 'uui-symbol-more' )
7
7
export class UUISymbolMoreElement extends LitElement {
8
8
render ( ) {
9
- return html `··· ` ;
9
+ return svg `<svg xmlns= "http://www.w3.org/2000/svg" viewBox = "0 0 100 100" >
10
+ <circle cx= "17" cy = "50" r = "9" > </ circle>
11
+ <circle cx= "50" cy = "50" r = "9" > </ circle>
12
+ <circle cx= "83" cy = "50" r = "9" > </ circle>
13
+ </ svg> ` ;
10
14
}
11
15
12
16
static styles = [
13
17
css `
14
18
: host {
15
19
display : inline-block;
16
- font-size : 1.48 em ;
17
- line-height : 0.8 em ;
18
- user-select : none ;
20
+ vertical-align : bottom ;
21
+ width : 1.15 em ;
22
+ height : 1.15 em ;
19
23
}
20
24
` ,
21
25
] ;
You can’t perform that action at this time.
0 commit comments