-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(on-this-page): add arrows and close icons
- Loading branch information
1 parent
ed59e38
commit cf60c14
Showing
2 changed files
with
60 additions
and
0 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,30 @@ | ||
import type { IconProps } from '@vtex/brand-ui' | ||
import { Icon } from '@vtex/brand-ui' | ||
|
||
const ArrowsIcon = (props: IconProps) => ( | ||
<Icon | ||
{...props} | ||
width="32" | ||
height="32" | ||
viewBox="0 0 32 32" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M10.666 10.6673L16.0007 5.33398L21.3353 10.6673" | ||
stroke="#142032" | ||
stroke-width="2" | ||
stroke-linecap="round" | ||
stroke-linejoin="round" | ||
/> | ||
<path | ||
d="M21.3353 21.332L16.0007 26.6667L10.666 21.332" | ||
stroke="#142032" | ||
stroke-width="2" | ||
stroke-linecap="round" | ||
stroke-linejoin="round" | ||
/> | ||
</Icon> | ||
) | ||
|
||
export default ArrowsIcon |
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,30 @@ | ||
import type { IconProps } from '@vtex/brand-ui' | ||
import { Icon } from '@vtex/brand-ui' | ||
|
||
const CloseIcon = (props: IconProps) => ( | ||
<Icon | ||
{...props} | ||
width="32" | ||
height="32" | ||
viewBox="0 0 32 32" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M8 8L24 24" | ||
stroke="#142032" | ||
stroke-width="2" | ||
stroke-linecap="round" | ||
stroke-linejoin="round" | ||
/> | ||
<path | ||
d="M24 8L8 24" | ||
stroke="#142032" | ||
stroke-width="2" | ||
stroke-linecap="round" | ||
stroke-linejoin="round" | ||
/> | ||
</Icon> | ||
) | ||
|
||
export default CloseIcon |