12 lines
321 B
TypeScript
12 lines
321 B
TypeScript
/** @jsxImportSource react */
|
|
|
|
export const DifyAiLogo = (props: React.SVGProps<SVGSVGElement>) => (
|
|
<svg viewBox="0 0 25 25" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
<image
|
|
href="https://framerusercontent.com/images/xRJ6vNo9mUYeVNxt0KITXCXEuSk.png"
|
|
height="25"
|
|
width="25"
|
|
/>
|
|
</svg>
|
|
)
|