Skip to content

Commit

Permalink
Merge pull request #31 from bancodobrasil/feat/tree-view-intermediary
Browse files Browse the repository at this point in the history
Feat/tree view intermediary
  • Loading branch information
eliasfeijo authored Sep 25, 2023
2 parents 455b41b + 9c41e65 commit ed8adf8
Show file tree
Hide file tree
Showing 8 changed files with 700 additions and 717 deletions.
29 changes: 29 additions & 0 deletions src/components/Icons/IconPlus.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import React from 'react';

interface IconPlusProps {
fill?: string;
width?: string;
height?: string;
className?: string;
}

export const IconPlus = ({
fill = '#000',
width = '20',
height = '20',
className = '',
}: IconPlusProps) => (
<svg
width={width}
height={height}
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<path
d="M10 0.000976562C4.486 0.000976562 0 4.48698 0 10.001C0 15.515 4.486 20.001 10 20.001C15.514 20.001 20 15.515 20 10.001C20 4.48698 15.514 0.000976562 10 0.000976562ZM15 11.001H11V15.001H9V11.001H5V9.00098H9V5.00098H11V9.00098H15V11.001Z"
fill={fill}
/>
</svg>
);
Loading

0 comments on commit ed8adf8

Please sign in to comment.