Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 2326 | Rev 2334 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2326 Rev 2333
Línea -... Línea 1...
-
 
1
import { styled } from '@mui/material'
1
import React from 'react'
2
import React from 'react'
Línea -... Línea 3...
-
 
3
 
-
 
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
}))
2
 
16
 
3
export function ReviewIcon({ props }) {
17
export function ReviewIcon({ props }) {
4
  return (
18
  return (
5
    <svg
19
    <AnimatedReviewIcon
6
      xmlns='http://www.w3.org/2000/svg'
20
      xmlns='http://www.w3.org/2000/svg'
7
      viewBox='48.197 45.013 150 156.368'
21
      viewBox='48.197 45.013 150 156.368'
8
      width={150}
22
      width={150}
9
      height={156.368}
23
      height={156.368}
Línea 35... Línea 49...
35
        strokeLinecap='round'
49
        strokeLinecap='round'
36
        strokeLinejoin='round'
50
        strokeLinejoin='round'
37
        strokeMiterlimit={10}
51
        strokeMiterlimit={10}
38
        strokeWidth={3.849}
52
        strokeWidth={3.849}
39
      />
53
      />
40
    </svg>
54
    </AnimatedReviewIcon>
41
  )
55
  )
42
}
56
}