axiom.ts28 lines · main
| 1 | import createBrivenIcon from '../createBrivenIcon'; |
| 2 | |
| 3 | /** |
| 4 | * @component @name Axiom |
| 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 Axiom = createBrivenIcon( |
| 14 | 'Axiom', |
| 15 | [ |
| 16 | [ |
| 17 | 'path', |
| 18 | { |
| 19 | d: 'M 23.824492,16.101047 18.697784,7.5269656 C 18.462679,7.1329038 17.883366,6.8104899 17.410325,6.8104899 h -3.200668 c -0.743945,0 -1.048898,-0.5065215 -0.67786,-1.125563 L 15.287074,2.75713 C 15.42634,2.5247735 15.426012,2.2387191 15.286324,2.0066059 15.146542,1.7744969 14.888473,1.6315507 14.609187,1.6315507 h -4.465049 c -0.4729825,0 -1.0535554,0.3216893 -1.290197,0.7148795 L 0.17762774,16.761293 c -0.23673156,0.393192 -0.23682129,1.036667 -3.6307e-4,1.429919 L 2.4097502,21.90405 c 0.3720043,0.618588 0.9820278,0.61931 1.3555632,0.0015 l 1.7443949,-2.884388 c 0.3736551,-0.617749 0.9835605,-0.617029 1.3555637,0.0015 l 1.5815041,2.630191 c 0.2364309,0.393185 0.8169143,0.714938 1.2899274,0.714938 H 20.05443 c 0.472831,0 1.053407,-0.321753 1.289869,-0.715004 l 2.477607,-4.120324 c 0.236463,-0.393283 0.237603,-1.037479 0.0025,-1.431569 z m -6.923723,-0.412663 c 0.369656,0.619824 0.06344,1.127037 -0.680475,1.127037 H 8.1947483 c -0.7439152,0 -1.0482959,-0.50619 -0.6762645,-1.124755 L 11.534323,9.0120892 c 0.371972,-0.6185912 0.980616,-0.6185912 1.352588,3e-5 z', |
| 20 | fill: 'currentColor', |
| 21 | key: '8eugby', |
| 22 | }, |
| 23 | ], |
| 24 | ], |
| 25 | { fill: 'none', stroke: 'none' }, |
| 26 | ); |
| 27 | |
| 28 | export default Axiom; |