add webber script
This commit is contained in:
22
src/docs/components/SVGs/CollapseOpenIcon.js
Normal file
22
src/docs/components/SVGs/CollapseOpenIcon.js
Normal file
@ -0,0 +1,22 @@
|
||||
import React from 'react';
|
||||
|
||||
const CollapseOpenIcon = ({ className, onClick }) => (
|
||||
<svg
|
||||
onClick={onClick}
|
||||
xmlns='http://www.w3.org/2000/svg'
|
||||
width='16'
|
||||
height='16'
|
||||
viewBox='0 0 24 24'
|
||||
fill='none'
|
||||
stroke='currentColor'
|
||||
strokeWidth='1'
|
||||
strokeLinecap='round'
|
||||
strokeLinejoin='round'
|
||||
className={`feather feather-minus-square ${className}`}
|
||||
>
|
||||
<rect x='3' y='3' width='18' height='18' rx='2' ry='2'></rect>
|
||||
<line x1='8' y1='12' x2='16' y2='12'></line>
|
||||
</svg>
|
||||
);
|
||||
|
||||
export default CollapseOpenIcon;
|
||||
Reference in New Issue
Block a user