forked from xola/ui-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'X2-6043' of github.com:ranjantanya/ui-kit into X2-6577-…
…6043 # By Tanya Ranjan (14) and others # Via Tanya Ranjan (10) and GitHub (1) * 'X2-6043' of github.com:ranjantanya/ui-kit: X2-6043: fix X2-6043: Fix top row in search bar 2.1.16 Dumb Bell, Mobile icons + Fix missing attribute for Submit Button (xola#254) Fix drawer close button (xola#260) Fix warnings from Tailwind (xola#259) 2.1.15 X2-6043: Have absolute width on xl and 2xl screens X2-6043: Adjust search bar width X2-6043: Lint fix X2-6043: Reapply changes for showcase feedback X2-6043: Address showcase feedback X2-6043: Remove Show all results option + change border & shadow X2-6043: Revert changes X2-6043: Change xl width X2-6043: Increase search box width on xl screens X2-6043: Fix typo X2-6043: Revert width change X2-6043: Dashboard search menu changes: initial commit # Conflicts: # src/index.js
- Loading branch information
Showing
10 changed files
with
96 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
src/theme.js | ||
package-lock.json | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import React from "react"; | ||
import { createIcon } from "../helpers/icon"; | ||
|
||
export const DumbbellIcon = createIcon((props) => { | ||
return ( | ||
<svg viewBox="0 0 14 14" width={14} height={14} fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> | ||
<path | ||
stroke="currentColor" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth="0.8" | ||
d="M9.745 2.203a.687.687 0 000 .972l2.004 2.003a.687.687 0 10.972-.972l-2.004-2.003a.688.688 0 00-.972 0z" | ||
/> | ||
<path | ||
stroke="currentColor" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth="0.8" | ||
d="M7.801 2.202a.687.687 0 000 .973l3.949 3.948a.687.687 0 10.972-.974L8.775 2.202a.688.688 0 00-.974 0zM2.812 9.137a.688.688 0 01.972 0l2.004 2.003a.688.688 0 01-.973.972L2.812 10.11a.687.687 0 010-.972z" | ||
/> | ||
<path | ||
stroke="currentColor" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth="0.8" | ||
d="M2.812 7.192a.688.688 0 01.972 0l3.948 3.948a.688.688 0 11-.973.973L2.812 8.166a.688.688 0 010-.974z" | ||
/> | ||
<path | ||
stroke="currentColor" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth="0.8" | ||
d="M9.289 4.663L5.27 8.68l.973.972 4.017-4.017-.972-.972z" | ||
/> | ||
</svg> | ||
); | ||
}); | ||
|
||
DumbbellIcon.tags = ["weight", "exercise", "gym"]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import React from "react"; | ||
import { createIcon } from "../helpers/icon"; | ||
|
||
export const MobileIcon = createIcon((props) => { | ||
return ( | ||
<svg width={18} height={18} viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> | ||
<g | ||
stroke="currentColor" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth="1.3" | ||
clipPath="url(#clip0_9896_373783)" | ||
> | ||
<path d="M13.5 14.25a1.5 1.5 0 01-1.5 1.5H6a1.5 1.5 0 01-1.5-1.5V3.75A1.5 1.5 0 016 2.25h6a1.5 1.5 0 011.5 1.5v10.5z" /> | ||
<path d="M10.877 2.25v1.5a.375.375 0 01-.375.375h-3a.375.375 0 01-.375-.375v-1.5" /> | ||
</g> | ||
<defs> | ||
<clipPath id="clip0_9896_373783"> | ||
<path fill="#fff" d="M0 0H18V18H0z" /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
); | ||
}); | ||
|
||
MobileIcon.tags = ["mobile", "phone", "iphone", "android", "ios"]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters