-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from jatimdevday/feat-cta-improvments
fix: cta ui improvements
- Loading branch information
Showing
4 changed files
with
91 additions
and
24 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 @@ | ||
import React, { SVGProps } from "react" | ||
|
||
const Click = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={18} | ||
height={21} | ||
fill="none" | ||
{...props} | ||
> | ||
<path | ||
stroke="#212121" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth={1.5} | ||
d="M12.042 20.172 10.684 15.1m0 0-2.51 2.225.569-9.47 5.227 7.917-3.286-.672ZM9 .75V3m5.834.166-1.591 1.591M17.25 9H15M4.757 13.243l-1.59 1.59M3 9H.75m4.007-4.243-1.59-1.59" | ||
/> | ||
</svg> | ||
) | ||
export default Click | ||
|
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,18 @@ | ||
import React, { SVGProps } from "react" | ||
|
||
const SvgComponent = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={79} | ||
height={98} | ||
fill="none" | ||
{...props} | ||
> | ||
<path | ||
fill="#CAF93A" | ||
d="M-.916-53.48c1.01-5.451 8.822-5.451 9.832 0l5.209 28.099c.723 3.9 5.48 5.446 8.358 2.716l20.73-19.67c4.022-3.817 10.341.774 7.954 5.779L38.866-10.764c-1.708 3.58 1.233 7.628 5.165 7.11l28.333-3.73c5.497-.723 7.91 6.706 3.038 9.352L50.29 15.606c-3.486 1.893-3.486 6.895 0 8.788l25.113 13.637c4.873 2.646 2.459 10.075-3.038 9.351l-28.333-3.729c-3.932-.518-6.873 3.53-5.165 7.11l12.301 25.794c2.387 5.004-3.932 9.595-7.954 5.779l-20.73-19.67c-2.877-2.73-7.635-1.185-8.358 2.715L8.916 93.48c-1.01 5.451-8.822 5.451-9.832 0L-6.125 65.38c-.723-3.9-5.48-5.446-8.358-2.716l-20.73 19.67c-4.022 3.817-10.341-.774-7.954-5.778l12.301-25.794c1.708-3.58-1.233-7.628-5.165-7.11l-28.333 3.73c-5.497.723-7.91-6.706-3.038-9.352l25.113-13.637c3.486-1.893 3.486-6.895 0-8.788L-67.402 1.969c-4.873-2.646-2.459-10.075 3.038-9.351l28.333 3.729c3.932.518 6.873-3.53 5.165-7.11l-12.301-25.794c-2.387-5.004 3.932-9.595 7.954-5.779l20.73 19.67c2.877 2.73 7.635 1.185 8.358-2.715L-.916-53.48Z" | ||
/> | ||
</svg> | ||
) | ||
export default SvgComponent | ||
|
Large diffs are not rendered by default.
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