Skip to content

Commit ba6d2ca

Browse files
authored
feat(icons): New vivo icons (#1335)
1 parent cc84189 commit ba6d2ca

20 files changed

Lines changed: 327 additions & 0 deletions
6.56 KB
Loading
7.53 KB
Loading
5.68 KB
Loading
6.97 KB
Loading
7.85 KB
Loading
6.02 KB
Loading
6.14 KB
Loading
7.83 KB
Loading
6.75 KB
Loading
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
'use client';
2+
/*
3+
* This file was autogenerated. Don't edit this file!
4+
*
5+
* To update, execute "yarn start" inside "import-mistica-icons"
6+
*/
7+
8+
import * as React from 'react';
9+
import {useIsInverseOrMediaVariant} from '../../theme-variant-context';
10+
import {vars} from '../../skins/skin-contract.css';
11+
12+
import type {IconProps} from '../../utils/types';
13+
14+
const IconGlassFilled = ({color, size = 24, ...rest}: IconProps): JSX.Element => {
15+
const isInverse = useIsInverseOrMediaVariant();
16+
const fillColor = color ?? (isInverse ? vars.colors.inverse : vars.colors.neutralHigh);
17+
18+
return (
19+
<svg width={size} height={size} viewBox="0 0 24 24" role="presentation" {...rest}>
20+
<path
21+
fill={fillColor}
22+
d="M2.001 19.468V4.53C1.983 3.085 3.244 2.058 4.63 2h14.742c1.385.058 2.646 1.085 2.628 2.53v14.938c.018 1.445-1.243 2.472-2.628 2.53H4.629c-1.385-.058-2.646-1.085-2.628-2.53M7.967 5.475a.75.75 0 0 0-1.06.008l-1.43 1.452a.75.75 0 1 0 1.068 1.053l1.43-1.452a.75.75 0 0 0-.008-1.06m3.18 2.325a.75.75 0 0 0-1.074-1.048L7.19 9.705a.75.75 0 0 0 1.073 1.048z"
23+
/>
24+
</svg>
25+
);
26+
};
27+
28+
export default IconGlassFilled;

0 commit comments

Comments
 (0)