Skip to content

Commit 10dbf5d

Browse files
committed
chore: format files
1 parent 1353ee4 commit 10dbf5d

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

packages/uui-icon/lib/uui-icon.element.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ export class UUIIconElement extends LitElement {
114114
this.removeAttribute('aria-label');
115115
this.setAttribute('aria-hidden', 'true');
116116
}
117-
118117
}
119118

120119
render() {

packages/uui-visually-hidden/lib/uui-visually-hidden.element.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ import { css, html, LitElement } from 'lit';
66
*/
77
@defineElement('uui-visually-hidden')
88
export class UUIVisuallyHiddenElement extends LitElement {
9+
render() {
10+
return html`<slot></slot>`;
11+
}
12+
913
static styles = [
1014
css`
1115
:host(:not(:focus-within)) {
@@ -21,10 +25,6 @@ export class UUIVisuallyHiddenElement extends LitElement {
2125
}
2226
`,
2327
];
24-
25-
render() {
26-
return html`<slot></slot>`;
27-
}
2828
}
2929

3030
declare global {

0 commit comments

Comments
 (0)