Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 2336 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
2312 stevensc 1
import React from 'react'
2
 
2335 stevensc 3
export function ReviewIcon({ width = 150, height = 156.368, ...props }) {
2312 stevensc 4
  return (
2335 stevensc 5
    <svg
2312 stevensc 6
      xmlns='http://www.w3.org/2000/svg'
2336 stevensc 7
      viewBox='48.197 45.013 150 156.368'
2335 stevensc 8
      width={width}
9
      height={height}
2312 stevensc 10
      {...props}
11
    >
12
      <g />
13
      <path
2326 stevensc 14
        fill='#FFF0'
2312 stevensc 15
        stroke='#290000FF'
16
        strokeLinecap='round'
17
        strokeLinejoin='round'
18
        strokeMiterlimit={10}
2326 stevensc 19
        d='M110.443 199.455H95.859a6.544 6.544 0 0 1-6.549-6.549v-38.848a6.544 6.544 0 0 1 6.549-6.549h14.584a6.544 6.544 0 0 1 6.549 6.549v38.854a6.544 6.544 0 0 1-6.549 6.546'
20
        strokeWidth={3.849}
2312 stevensc 21
      />
22
      <path
2326 stevensc 23
        fill='#FFF0'
2312 stevensc 24
        stroke='#290000FF'
25
        strokeLinecap='round'
26
        strokeLinejoin='round'
27
        strokeMiterlimit={10}
2326 stevensc 28
        d='M158.216 147.51h-8.813a4.1 4.1 0 0 1-4.101-4.101v-4.489a15.39 15.39 0 0 0-15.388-15.388h0a4.594 4.594 0 0 0-4.594 4.594v8.736a22.05 22.05 0 0 1-8.338 17.274h0v38.756a2.57 2.57 0 0 0 2.569 2.569h34.922a12.76 12.76 0 0 0 12.585-10.661l3.739-22.438a12.756 12.756 0 0 0-12.581-14.854'
29
        strokeWidth={3.849}
2312 stevensc 30
      />
31
      <path
2326 stevensc 32
        d='m127.539 49.991 3.63 7.357a5.5 5.5 0 0 0 4.127 3l8.119 1.177c4.492.654 6.287 6.174 3.038 9.347l-5.874 5.728a5.51 5.51 0 0 0-1.575 4.851l1.386 8.085c.767 4.478-3.93 7.888-7.95 5.775l-7.26-3.819a5.48 5.48 0 0 0-5.102 0l-7.26 3.819c-4.02 2.113-8.717-1.301-7.95-5.775l1.386-8.085a5.51 5.51 0 0 0-1.575-4.851l-5.874-5.728c-3.253-3.169-1.459-8.693 3.038-9.347l8.119-1.177a5.48 5.48 0 0 0 4.127-3l3.63-7.357c2.006-4.069 7.811-4.069 9.821 0M73.627 84.938l2.629 5.329a4.4 4.4 0 0 0 3.319 2.409l5.878.855a4.404 4.404 0 0 1 2.441 7.515l-4.254 4.146a4.4 4.4 0 0 0-1.268 3.9l1.005 5.856a4.408 4.408 0 0 1-6.396 4.646l-5.259-2.764a4.43 4.43 0 0 0-4.101 0l-5.259 2.764a4.408 4.408 0 0 1-6.396-4.646l1.005-5.856a4.39 4.39 0 0 0-1.268-3.9l-4.254-4.146c-2.614-2.548-1.17-6.992 2.441-7.515l5.878-.855a4.4 4.4 0 0 0 3.319-2.409l2.629-5.329a4.408 4.408 0 0 1 7.903 0m107.038 0 2.629 5.329a4.4 4.4 0 0 0 3.319 2.409l5.878.851a4.404 4.404 0 0 1 2.441 7.515l-4.254 4.146a4.4 4.4 0 0 0-1.268 3.9l1.005 5.856a4.408 4.408 0 0 1-6.396 4.646l-5.259-2.764a4.43 4.43 0 0 0-4.101 0l-5.259 2.764a4.408 4.408 0 0 1-6.396-4.646l1.005-5.856a4.39 4.39 0 0 0-1.268-3.9l-4.254-4.146c-2.614-2.548-1.17-6.992 2.441-7.515l5.878-.855a4.4 4.4 0 0 0 3.319-2.409l2.629-5.329c1.616-3.272 6.287-3.272 7.903.004'
33
        fill='#FFF0'
2336 stevensc 34
        stroke='var(--font-color)'
2312 stevensc 35
        strokeLinecap='round'
36
        strokeLinejoin='round'
37
        strokeMiterlimit={10}
2326 stevensc 38
        strokeWidth={3.849}
2312 stevensc 39
      />
2335 stevensc 40
    </svg>
2312 stevensc 41
  )
42
}
2334 stevensc 43
 
2335 stevensc 44
export function ErrorIcon({
45
  width = 150,
46
  height = 150,
47
  color = 'var(--danger)',
48
  ...props
49
}) {
2334 stevensc 50
  return (
51
    <svg
52
      xmlns='http://www.w3.org/2000/svg'
2336 stevensc 53
      viewBox='58.333 58.333 150 150'
2335 stevensc 54
      width={width}
55
      height={height}
56
      color={color}
2334 stevensc 57
      {...props}
58
    >
59
      <g />
60
      <path
61
        fill='#FFF0'
2335 stevensc 62
        stroke='currentColor'
2334 stevensc 63
        strokeLinecap='round'
64
        strokeLinejoin='round'
65
        strokeMiterlimit={10}
66
        d='M206.25 133.333a72.917 72.917 0 0 1-72.917 72.917 72.917 72.917 0 0 1-72.916-72.917 72.917 72.917 0 0 1 145.833 0'
67
        strokeWidth={4.167}
68
      />
69
      <path
70
        d='M162.5 104.167 104.167 162.5m58.333 0-58.333-58.333'
71
        fill='none'
2335 stevensc 72
        stroke='currentColor'
2334 stevensc 73
        strokeLinecap='round'
74
        strokeLinejoin='round'
75
        strokeMiterlimit={10}
76
        strokeWidth={4.167}
77
      />
78
    </svg>
79
  )
80
}
2338 stevensc 81
 
82
export function CapsuleSuccessIcon({
83
  width = 150,
84
  height = 173.858,
85
  color = 'var(--danger)',
86
  ...props
87
}) {
88
  return (
89
    <svg
90
      xmlns='http://www.w3.org/2000/svg'
91
      viewBox='43.796 31.867 150 173.858'
92
      width={width}
93
      height={height}
94
      {...props}
95
    >
96
      <g
97
        stroke='#000'
98
        strokeLinecap='round'
99
        strokeLinejoin='round'
100
        strokeMiterlimit={10}
101
      >
102
        <path
103
          fill='#FFF0'
104
          d='M141.199 203.25H72.693a26.43 26.43 0 0 1-26.422-26.427V60.769a26.43 26.43 0 0 1 26.427-26.432h68.501a26.43 26.43 0 0 1 26.422 26.432v116.054a26.43 26.43 0 0 1-26.422 26.427'
105
        />
106
        <path fill='none' d='M78.391 178.174h16.691m-16.691-26.66h28.754' />
107
      </g>
108
      <path
109
        d='M134.735 116.43c0 4.653-4.163 8.425-9.296 8.425H88.454c-5.133 0-9.296-3.772-9.296-8.425v0c0-11.246 10.058-20.359 22.457-20.359h10.652c12.404 0 22.462 9.113 22.462 20.359m-13.601-44.078a14.18 14.18 0 0 1-14.182 14.181 14.18 14.18 0 0 1-14.181-14.181 14.181 14.181 0 0 1 28.363 0'
110
        fill='none'
111
        stroke='#50B587FF'
112
        strokeLinecap='round'
113
        strokeLinejoin='round'
114
        strokeMiterlimit={10}
115
      />
116
      <g />
117
      <g
118
        stroke='#50B587FF'
119
        strokeLinecap='round'
120
        strokeLinejoin='round'
121
        strokeMiterlimit={10}
122
      >
123
        <path
124
          fill='#FFF0'
125
          d='M191.316 170.74a32.397 32.397 0 0 1-32.396 32.397 32.397 32.397 0 0 1-32.397-32.397 32.397 32.397 0 0 1 64.793 0'
126
        />
127
        <path fill='none' d='m146.382 170.888 8.261 8.261 16.815-16.82' />
128
      </g>
129
    </svg>
130
  )
131
}