All files / icons modal-close.js

0% Statements 0/14
0% Branches 0/8
0% Functions 0/3
0% Lines 0/3
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21                                         
import React from 'react'
 
const ModalClose = (props) => (
  <svg width='24' height='24' viewBox='0 0 24 24' {...props}>
    <defs>
      <filter id='a' width='100.5%' height='100.2%' x='-.2%' y='-.1%' filterUnits='objectBoundingBox'>
        <feOffset dy='1' in='SourceAlpha' result='shadowOffsetOuter1' />
        <feGaussianBlur in='shadowOffsetOuter1' result='shadowBlurOuter1' stdDeviation='1' />
        <feColorMatrix in='shadowBlurOuter1' result='shadowMatrixOuter1' values='0 0 0 0 0.2 0 0 0 0 0.235294118 0 0 0 0 0.282352941 0 0 0 0.3 0' />
        <feMerge>
          <feMergeNode in='shadowMatrixOuter1' />
          <feMergeNode in='SourceGraphic' />
        </feMerge>
      </filter>
    </defs>
    <path fill='#C5D0E1' fillRule='evenodd' d='M11.414 10l8.293-8.293A.999.999 0 1 0 18.293.293L10 8.586 1.707.293A.999.999 0 1 0 .293 1.707L8.586 10 .293 18.293a.999.999 0 1 0 1.414 1.414L10 11.414l8.293 8.293a.999.999 0 1 0 1.414-1.414L11.414 10z' filter='url(#a)' transform='translate(2 1)' />
  </svg>
)
 
export default ModalClose