-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from bancodobrasil/feat/tree-view-intermediary
Feat/tree view intermediary
- Loading branch information
Showing
8 changed files
with
700 additions
and
717 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
); |
Oops, something went wrong.