Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev Autor Línea Nro. Línea
2333 stevensc 1
import { styled } from '@mui/material'
2312 stevensc 2
import React from 'react'
3
 
2333 stevensc 4
const AnimatedReviewIcon = styled('svg')(({ theme }) => ({
5
  '@keyframes dash': {
6
    to: {
7
      strokeDashoffset: 0
8
    }
9
  },
10
  '& path:nth-child(-n+3)': {
11
    strokeDasharray: 1000,
12
    strokeDashoffset: 1000,
13
    animation: 'dash 5s linear forwards'
14
  }
15
}))
16
 
2312 stevensc 17
export function ReviewIcon({ props }) {
18
  return (
2333 stevensc 19
    <AnimatedReviewIcon
2312 stevensc 20
      xmlns='http://www.w3.org/2000/svg'
2326 stevensc 21
      viewBox='48.197 45.013 150 156.368'
22
      width={150}
23
      height={156.368}
2312 stevensc 24
      {...props}
25
    >
26
      <g />
27
      <path
2326 stevensc 28
        fill='#FFF0'
2312 stevensc 29
        stroke='#290000FF'
30
        strokeLinecap='round'
31
        strokeLinejoin='round'
32
        strokeMiterlimit={10}
2326 stevensc 33
        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'
34
        strokeWidth={3.849}
2312 stevensc 35
      />
36
      <path
2326 stevensc 37
        fill='#FFF0'
2312 stevensc 38
        stroke='#290000FF'
39
        strokeLinecap='round'
40
        strokeLinejoin='round'
41
        strokeMiterlimit={10}
2326 stevensc 42
        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'
43
        strokeWidth={3.849}
2312 stevensc 44
      />
45
      <path
2326 stevensc 46
        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'
47
        fill='#FFF0'
2312 stevensc 48
        stroke='#001FCAFF'
49
        strokeLinecap='round'
50
        strokeLinejoin='round'
51
        strokeMiterlimit={10}
2326 stevensc 52
        strokeWidth={3.849}
2312 stevensc 53
      />
2333 stevensc 54
    </AnimatedReviewIcon>
2312 stevensc 55
  )
56
}