logs.ts27 lines · main
| 1 | import createBrivenIcon from '../createBrivenIcon'; |
| 2 | |
| 3 | /** |
| 4 | * @component @name Logs |
| 5 | * @description Briven SVG icon component, renders SVG Element with children. |
| 6 | * |
| 7 | * @preview  |
| 8 | * |
| 9 | * @param {Object} props - Briven icons props and any valid SVG attribute |
| 10 | * @returns {JSX.Element} JSX Element |
| 11 | * |
| 12 | */ |
| 13 | const Logs = createBrivenIcon( |
| 14 | 'Logs', |
| 15 | [ |
| 16 | [ |
| 17 | 'path', |
| 18 | { |
| 19 | d: 'M4.5 5.20679H4.53713M7.46241 5.21707H19.5M4.5 9.65839H4.53713M7.46241 9.66868H19.5M4.52692 14.164H4.53713M7.46241 14.1742H19.5M4.52692 18.7068L4.53713 18.6965M7.46241 18.7068H19.5', |
| 20 | key: '2ab8w8', |
| 21 | }, |
| 22 | ], |
| 23 | ], |
| 24 | { fill: 'none', stroke: 'currentColor', strokeWidth: '1' }, |
| 25 | ); |
| 26 | |
| 27 | export default Logs; |