Rev 16738 |
|
Comparar con el anterior |
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
16738 |
stevensc |
1 |
import React from 'react'
|
|
|
2 |
|
|
|
3 |
const SurveyIcon = () => {
|
|
|
4 |
return (
|
16739 |
stevensc |
5 |
<svg
|
|
|
6 |
xmlns="http://www.w3.org/2000/svg"
|
|
|
7 |
color="currentColor"
|
|
|
8 |
width="1rem"
|
|
|
9 |
height="1rem"
|
|
|
10 |
viewBox="0 0 448 512"
|
|
|
11 |
>
|
16738 |
stevensc |
12 |
<path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM160 368c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16V240c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v128zm96 0c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16V144c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v224zm96 0c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-64c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v64z" />
|
|
|
13 |
</svg>
|
|
|
14 |
)
|
|
|
15 |
}
|
|
|
16 |
|
|
|
17 |
export default SurveyIcon
|