-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Tabs, Modal, and Pagination components.
- Loading branch information
Showing
28 changed files
with
1,156 additions
and
416 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
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,20 @@ | ||
// eslint-disable-next-line | ||
import { FunctionalComponent, h } from '@stencil/core'; | ||
|
||
interface IconProps { | ||
color?: string; | ||
onClick?: () => void; | ||
size?: string; | ||
} | ||
|
||
export const IconChevronLeftThick: FunctionalComponent<IconProps> = (props: IconProps) => ( | ||
<svg height={props.size ?? 16} width={props.size ?? 16} viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> | ||
<mask id="mask0_434_74" maskUnits="userSpaceOnUse" x="6" y="5" width="8" height="10"> | ||
<path d="M13.0875 6.175L11.9125 5L6.91248 10L11.9125 15L13.0875 13.825L9.27081 10L13.0875 6.175Z" fill="white" /> | ||
</mask> | ||
<g mask="url(#mask0_434_74)"> | ||
<path d="M13.0875 6.175L11.9125 5L6.91248 10L11.9125 15L13.0875 13.825L9.27081 10L13.0875 6.175Z" fill={props.color ?? '#6A6976'} /> | ||
</g> | ||
</svg> | ||
|
||
); |
Oops, something went wrong.