We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8be0e27 commit e89f430Copy full SHA for e89f430
packages/ui/package.json
@@ -2,7 +2,7 @@
2
"name": "@eqtylab/equality",
3
"description": "EQTYLab's component and token-based design system",
4
"homepage": "https://equality.eqtylab.io/",
5
- "version": "1.0.1",
+ "version": "1.0.2",
6
"license": "Apache-2.0",
7
"keywords": [
8
"component library",
packages/ui/src/components/search-bar/search-bar.tsx
@@ -30,7 +30,7 @@ const SearchBar = ({
30
};
31
32
return (
33
- <div className={cn(styles['search-bar'], className)}>
+ <search className={cn(styles['search-bar'], className)}>
34
<Input
35
placeholder={placeholder}
36
value={searchQuery}
@@ -48,7 +48,7 @@ const SearchBar = ({
48
)
49
}
50
/>
51
- </div>
+ </search>
52
);
53
54
0 commit comments