We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b326ebc commit 1f30c76Copy full SHA for 1f30c76
packages/devtools-ui/src/components/tag.tsx
@@ -1,4 +1,4 @@
1
-import { Show, } from 'solid-js'
+import { Show } from 'solid-js'
2
import { useStyles } from '../styles/use-styles'
3
import type { tokens } from '../styles/tokens'
4
@@ -10,10 +10,7 @@ export const Tag = (props: {
10
}) => {
11
const styles = useStyles()
12
return (
13
- <button
14
- disabled={props.disabled}
15
- class={styles().tag.base}
16
- >
+ <button disabled={props.disabled} class={styles().tag.base}>
17
<span class={styles().tag.dot(props.color)} />
18
<span class={styles().tag.label}>{props.label}</span>
19
0 commit comments