| 12345678910111213141516171819 |
- import React from 'react';
- export const ExpandIcon = (): JSX.Element => {
- return (
- <svg
- xmlns="http://www.w3.org/2000/svg"
- width="18"
- height="18"
- viewBox="0 0 45 45"
- >
- <path
- fill="currentColor"
- d="M8.1 44v-3h31.8v3Zm16-4.5-7.6-7.6 2.15-2.15
- 3.95 3.95V14.3l-3.95 3.95-2.15-2.15 7.6-7.6 7.6 7.6-2.15
- 2.15-3.95-3.95v19.4l3.95-3.95 2.15 2.15ZM8.1 7V4h31.8v3Z"
- />
- </svg>
- );
- };
|