ente/src/components/icons/AddIcon.tsx

22 lines
520 B
TypeScript
Raw Normal View History

2021-05-21 10:53:18 +00:00
import React from 'react';
export default function AddIcon(props) {
2021-05-21 10:53:18 +00:00
return (
<svg
xmlns="http://www.w3.org/2000/svg"
height={props.height}
viewBox={props.viewBox}
width={props.width}
fill='currentColor'
2021-05-21 10:53:18 +00:00
>
<g><rect fill="none" height="24" width="24"/></g><g><g><path d="M19,13h-6v6h-2v-6H5v-2h6V5h2v6h6V13z"/></g></g>
2021-05-21 10:53:18 +00:00
</svg>
);
}
AddIcon.defaultProps = {
2021-05-21 10:53:18 +00:00
height: 24,
width: 24,
viewBox: '0 0 24 24',
};