-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathsolflare-circle-colorful.tsx
26 lines (22 loc) · 4.47 KB
/
solflare-circle-colorful.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// GENERATE BY ./scripts/generate.ts
// DON NOT EDIT IT MANUALLY
import * as React from 'react';
import AntdIcon from '@ant-design/icons';
import { type IconBaseProps } from '@ant-design/icons/lib/components/Icon';
import { ConfigProvider } from 'antd';
import classnames from 'classnames';
import SVGComponent from '../svgs/solflare-circle-colorful.svg';
/** */
export const SolflareCircleColorful = React.forwardRef<HTMLSpanElement, IconBaseProps>((props, ref) => {
const { getPrefixCls } = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-solflare-circle-colorful');
return (
<AntdIcon
{...props}
className={classnames(prefixCls, props.className)}
ref={ref}
component={SVGComponent}
/>
);
});
SolflareCircleColorful.displayName = 'SolflareCircleColorful';