Skip to content

Commit

Permalink
feat(on-this-page): add arrows and close icons
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardoAnjos16 committed Aug 2, 2022
1 parent ed59e38 commit cf60c14
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/components/icons/arrows-icon.tsx
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
30 changes: 30 additions & 0 deletions src/components/icons/close-icon.tsx
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

0 comments on commit cf60c14

Please sign in to comment.