forked from makefragment/template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is an automated commit generated by Hojat Khajavi using Plasmic (https://plasmic.app/). Project name: pricing Project URL: https://studio.plasmic.app/projects/seYsnBL1P3AiXaFGNEMUUM
- Loading branch information
1 parent
7294d7f
commit cb8c9fe
Showing
5 changed files
with
77 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// @ts-nocheck | ||
/* eslint-disable */ | ||
/* tslint:disable */ | ||
/* prettier-ignore-start */ | ||
import React from "react"; | ||
import { classNames } from "@plasmicapp/react-web"; | ||
|
||
export type Icon17IconProps = React.ComponentProps<"svg"> & { | ||
title?: string; | ||
}; | ||
|
||
export function Icon17Icon(props: Icon17IconProps) { | ||
const { className, style, title, ...restProps } = props; | ||
return ( | ||
<svg | ||
xmlns={"http://www.w3.org/2000/svg"} | ||
fill={"none"} | ||
stroke={"currentColor"} | ||
strokeWidth={"2"} | ||
strokeLinecap={"round"} | ||
strokeLinejoin={"round"} | ||
className={classNames( | ||
"plasmic-default__svg", | ||
className, | ||
"lucide lucide-loader-circle" | ||
)} | ||
viewBox={"0 0 24 24"} | ||
height={"1em"} | ||
style={style} | ||
{...restProps} | ||
> | ||
{title && <title>{title}</title>} | ||
|
||
<path d={"M21 12a9 9 0 11-6.219-8.56"}></path> | ||
</svg> | ||
); | ||
} | ||
|
||
export default Icon17Icon; | ||
/* prettier-ignore-end */ |
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