We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91441c7 commit 470fd23Copy full SHA for 470fd23
examples/agents-researcher/app/icons/workflow-icon.tsx
@@ -1,13 +1,14 @@
1
const DEFAULT_ICON_SIZE = 32;
2
3
-export const WorkflowIcon = ({ size = DEFAULT_ICON_SIZE }) => {
+export const WorkflowIcon = ({ size = DEFAULT_ICON_SIZE, ...props }) => {
4
return (
5
<svg
6
width={size}
7
height={size}
8
viewBox="0 0 32 32"
9
fill="none"
10
xmlns="http://www.w3.org/2000/svg"
11
+ {...props}
12
>
13
<rect width="32" height="32" rx="7" fill="#9333EA" />
14
<path
0 commit comments