Skip to content

Commit 470fd23

Browse files
committed
style
1 parent 91441c7 commit 470fd23

File tree

2 files changed

+245
-241
lines changed

2 files changed

+245
-241
lines changed

examples/agents-researcher/app/icons/workflow-icon.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
const DEFAULT_ICON_SIZE = 32;
22

3-
export const WorkflowIcon = ({ size = DEFAULT_ICON_SIZE }) => {
3+
export const WorkflowIcon = ({ size = DEFAULT_ICON_SIZE, ...props }) => {
44
return (
55
<svg
66
width={size}
77
height={size}
88
viewBox="0 0 32 32"
99
fill="none"
1010
xmlns="http://www.w3.org/2000/svg"
11+
{...props}
1112
>
1213
<rect width="32" height="32" rx="7" fill="#9333EA" />
1314
<path

0 commit comments

Comments
 (0)