mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-04-20 04:18:05 +00:00
15 lines
1.8 KiB
JavaScript
15 lines
1.8 KiB
JavaScript
|
|
const React = require('react');
|
|
const IconBase = require('@ali/vu-icon-base');
|
|
|
|
function TextTransform(props) {
|
|
return (
|
|
<IconBase viewBox="0 0 40 18" {...props}>
|
|
<path d="M37.9692353,15.72 C38.1257067,16.2000024 38.7672297,16.44 39.8938235,16.44 L39.8938235,17.832 L31.3035882,17.832 L31.3035882,16.44 L33.369,16.44 C33.822767,16.44 34.0496471,16.2880015 34.0496471,15.984 C34.0496471,15.9359998 34.0261767,15.8480006 33.9792353,15.72 L33.0404118,13.128 L25.8349412,13.128 L24.9665294,15.528 C24.9352351,15.6240005 24.9195882,15.7199995 24.9195882,15.816 C24.9195882,16.2320021 25.2638201,16.44 25.9522941,16.44 L27.4074706,16.44 L27.4074706,17.832 L21,17.832 L21,16.416 C21.6571798,16.416 22.1422337,16.3600006 22.4551765,16.248 C22.7681192,16.1359994 22.9637055,15.9680011 23.0419412,15.744 L28.9095882,0 L32.3128235,0 L37.9692353,15.72 Z M26.8676471,10.848 L32.8761176,10.848 L29.8953529,2.4 L26.8676471,10.848 Z M16.9692353,15.72 C17.1257067,16.2000024 17.7672297,16.44 18.8938235,16.44 L18.8938235,17.832 L10.3035882,17.832 L10.3035882,16.44 L12.369,16.44 C12.822767,16.44 13.0496471,16.2880015 13.0496471,15.984 C13.0496471,15.9359998 13.0261767,15.8480006 12.9792353,15.72 L12.0404118,13.128 L4.83494118,13.128 L3.96652941,15.528 C3.93523514,15.6240005 3.91958824,15.7199995 3.91958824,15.816 C3.91958824,16.2320021 4.26382009,16.44 4.95229412,16.44 L6.40747059,16.44 L6.40747059,17.832 L0,17.832 L0,16.416 C0.657179756,16.416 1.14223373,16.3600006 1.45517647,16.248 C1.76811921,16.1359994 1.96370549,15.9680011 2.04194118,15.744 L7.90958824,0 L11.3128235,0 L16.9692353,15.72 Z M5.86764706,10.848 L11.8761176,10.848 L8.89535294,2.4 L5.86764706,10.848 Z"/>
|
|
</IconBase>
|
|
);
|
|
}
|
|
TextTransform.displayName = 'TextTransform';
|
|
|
|
module.exports = TextTransform;
|