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 Uppercase(props) {
|
|
return (
|
|
<IconBase viewBox="0 0 30 17" {...props}>
|
|
<path d="M14,4.34122179 L12.1548732,4.40671436 C12.1050287,3.43159789 12.246107,3.14728377 12.0280374,2.76160338 C11.8099678,2.37592298 11.5451729,2.10667844 11.2336449,1.95386168 C10.9221168,1.80104492 10.5545193,1.72463768 10.1308411,1.72463768 L8.44859813,1.72463768 L8.44859813,14.7295909 C8.44859813,15.3990739 9.00934019,15.7338103 10.1308411,15.7338103 L10.1308411,17 L3.90654206,17 L3.90654206,15.7338103 C5.01558187,15.7338103 5.57009346,15.3990739 5.57009346,14.7295909 L5.57009346,1.72463768 L3.86915888,1.72463768 C3.44548075,1.72463768 3.07788318,1.80104492 2.76635514,1.95386168 C2.4548271,2.10667844 2.19003224,2.37592298 1.97196262,2.76160338 C1.75389299,3.14728377 1.89497132,3.43159789 1.84512684,4.40671436 L0,4.34122179 L0,0 L14,0 L14,4.34122179 Z M30,4.34122179 L28.1548732,4.40671436 C28.1050287,3.43159789 28.246107,3.14728377 28.0280374,2.76160338 C27.8099678,2.37592298 27.5451729,2.10667844 27.2336449,1.95386168 C26.9221168,1.80104492 26.5545193,1.72463768 26.1308411,1.72463768 L24.4485981,1.72463768 L24.4485981,14.7295909 C24.4485981,15.3990739 25.0093402,15.7338103 26.1308411,15.7338103 L26.1308411,17 L19.9065421,17 L19.9065421,15.7338103 C21.0155819,15.7338103 21.5700935,15.3990739 21.5700935,14.7295909 L21.5700935,1.72463768 L19.8691589,1.72463768 C19.4454807,1.72463768 19.0778832,1.80104492 18.7663551,1.95386168 C18.4548271,2.10667844 18.1900322,2.37592298 17.9719626,2.76160338 C17.753893,3.14728377 17.8949713,3.43159789 17.8451268,4.40671436 L16,4.34122179 L16,0 L30,0 L30,4.34122179 Z"/>
|
|
</IconBase>
|
|
);
|
|
}
|
|
Uppercase.displayName = 'Uppercase';
|
|
|
|
module.exports = Uppercase;
|