Skip to content

Commit

Permalink
update:add new props to addicon
Browse files Browse the repository at this point in the history
  • Loading branch information
maceteligolden committed Nov 24, 2023
1 parent 80be9f3 commit 3ce6261
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions apps/web/lib/components/svgs/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2221,11 +2221,18 @@ export function QuoteBlockIcon({ className }: IClassName) {
);
}

export function AddIcon({ className }: IClassName) {
return (
<svg
width="14"
height="14"
export function AddIcon({
className,
width=14,
height=14
}: IClassName<{
width?: number,
height?: number,
}>) {
return (
<svg
width={width}
height={height}
viewBox="0 0 14 14"
fill="none"
xmlns="http://www.w3.org/2000/svg"
Expand Down

0 comments on commit 3ce6261

Please sign in to comment.