Skip to content

Commit

Permalink
feat: Aligned more symbol to center
Browse files Browse the repository at this point in the history
  • Loading branch information
nikcio committed Sep 15, 2024
1 parent f798226 commit 69ec123
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 69ec123

Please sign in to comment.