-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(editable): introduce new nested card variant (#1478)
* feat(icons): introduce new vertical draggable icon * feat(editable): introduce nested version of accordion * fix(contactus): update location card to use nested * fix: border radius of error divider
- Loading branch information
Showing
4 changed files
with
177 additions
and
45 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
export const BxDraggableVertical = ( | ||
props: React.SVGProps<SVGSVGElement> | ||
): JSX.Element => { | ||
return ( | ||
<svg | ||
width="24" | ||
height="24" | ||
viewBox="0 0 24 24" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
{...props} | ||
> | ||
<circle cx="9" cy="18" r="2" fill="#BABECB" /> | ||
<circle cx="9" cy="12" r="2" fill="#BABECB" /> | ||
<circle cx="9" cy="6" r="2" fill="#BABECB" /> | ||
<circle cx="15" cy="18" r="2" fill="#BABECB" /> | ||
<circle cx="15" cy="12" r="2" fill="#BABECB" /> | ||
<circle cx="15" cy="6" r="2" fill="#BABECB" /> | ||
</svg> | ||
) | ||
} |
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