Skip to content

Commit e89f430

Browse files
authored
feat(ui): added search element to search bar component (#63)
1 parent 8be0e27 commit e89f430

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@eqtylab/equality",
33
"description": "EQTYLab's component and token-based design system",
44
"homepage": "https://equality.eqtylab.io/",
5-
"version": "1.0.1",
5+
"version": "1.0.2",
66
"license": "Apache-2.0",
77
"keywords": [
88
"component library",

packages/ui/src/components/search-bar/search-bar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const SearchBar = ({
3030
};
3131

3232
return (
33-
<div className={cn(styles['search-bar'], className)}>
33+
<search className={cn(styles['search-bar'], className)}>
3434
<Input
3535
placeholder={placeholder}
3636
value={searchQuery}
@@ -48,7 +48,7 @@ const SearchBar = ({
4848
)
4949
}
5050
/>
51-
</div>
51+
</search>
5252
);
5353
};
5454

0 commit comments

Comments
 (0)