File size: 355 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import React from 'react';
const AttachButtonPlusIcon = ({ className }) => (
<svg className={className} width="24" height="24" viewBox="0 0 24 24">
<path
fill="currentColor"
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"
/>
</svg>
);
export default AttachButtonPlusIcon;
|