Skip to content

Commit

Permalink
Merge branch 'v1/contrib' into v1/feature/expand-and-sort-symbol-update
Browse files Browse the repository at this point in the history
  • Loading branch information
nielslyngsoe authored Sep 16, 2024
2 parents 4031642 + cd598e8 commit 8f0dee2
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions packages/uui-symbol-more/lib/uui-symbol-more.element.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
import { LitElement, html, css } from 'lit';
import { LitElement, svg, css } from 'lit';
import { defineElement } from '@umbraco-ui/uui-base/lib/registration';
/**
* @element uui-symbol-more
*/
@defineElement('uui-symbol-more')
export class UUISymbolMoreElement extends LitElement {
render() {
return html`···`;
return svg`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<circle cx="17" cy="50" r="9"></circle>
<circle cx="50" cy="50" r="9"></circle>
<circle cx="83" cy="50" r="9"></circle>
</svg>`;
}

static styles = [
css`
:host {
display: inline-block;
font-size: 1.48em;
line-height: 0.8em;
user-select: none;
vertical-align: bottom;
width: 1.15em;
height: 1.15em;
}
`,
];
Expand Down

0 comments on commit 8f0dee2

Please sign in to comment.