Skip to content

Commit 8f3e240

Browse files
committed
Merge branch 'main' into combobox
2 parents 39a02c0 + 9eed31a commit 8f3e240

36 files changed

+1194
-196
lines changed

.github/workflows/loki.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,13 @@ jobs:
1313
name: loki test
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v1
16+
- uses: actions/checkout@v3
17+
18+
- name: Set up node
19+
uses: actions/setup-node@v3
20+
with:
21+
node-version: '14'
22+
cache: 'yarn'
1723

1824
- name: yarn install
1925
run: yarn install

.github/workflows/publish-site.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Publish site
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build:
8+
name: Publish site
9+
runs-on: self-hosted
10+
11+
steps:
12+
- uses: actions/checkout@v3
13+
14+
- name: Set up node
15+
uses: actions/setup-node@v3
16+
with:
17+
node-version: '14'
18+
cache: 'yarn'
19+
20+
- name: Build project
21+
run: |
22+
yarn install
23+
yarn build
24+
25+
- name: Build site
26+
run: yarn site:build
27+
28+
- name: Configure git
29+
run: |
30+
git config user.name github-actions
31+
git config user.email github-actions@github.com
32+
33+
- name: Deploy site
34+
run: yarn site:deploy

.github/workflows/yarn.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,27 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-latest
11+
runs-on: self-hosted
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515

1616
- name: Set up node
17-
uses: actions/setup-node@v2.2.0
17+
uses: actions/setup-node@v3
1818
with:
1919
node-version: '14'
2020
cache: 'yarn'
2121

22-
- name: Build
22+
- name: Build project
2323
run: |
2424
yarn install
2525
yarn build
2626
27+
- name: Build site
28+
run: yarn site:build
29+
2730
- name: Run tests
2831
run: yarn test
2932

3033
- name: Upload codecov report
31-
uses: codecov/codecov-action@v1.5.2
34+
uses: codecov/codecov-action@v3
Loading
Loading
Loading

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bold-ui",
3-
"version": "1.0.0-beta.51",
3+
"version": "1.0.0-beta.55",
44
"main": "lib/index.js",
55
"types": "lib/index.d.ts",
66
"homepage": "https://bold.bridge.ufsc.br",

site/src/components/useThemeSwitch.ts

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const useThemeSwitch = (): [Theme, () => Theme] => {
88

99
useEffect(() => {
1010
if (localStorage) {
11-
const loadedTheme = loadTheme()
11+
const loadedTheme = localStorage.getItem('currentTheme') === 'dark' ? darkTheme : lightTheme
1212
setCurrentTheme(loadedTheme)
1313
}
1414
}, [])
@@ -40,14 +40,3 @@ export const useThemeSwitch = (): [Theme, () => Theme] => {
4040

4141
return [currentTheme, toggleTheme]
4242
}
43-
44-
const loadTheme = () => {
45-
let loadedTheme = localStorage.getItem('currentTheme')
46-
47-
if (!loadedTheme) {
48-
loadedTheme = Math.random() < 0.3 ? 'dark' : 'light'
49-
}
50-
51-
localStorage.setItem('currentTheme', loadedTheme)
52-
return loadedTheme === 'dark' ? darkTheme : lightTheme
53-
}

site/yarn.lock

Lines changed: 31 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -2397,9 +2397,9 @@
23972397
"@hapi/hoek" "^9.0.0"
23982398

23992399
"@sideway/formula@^3.0.0":
2400-
version "3.0.0"
2401-
resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c"
2402-
integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==
2400+
version "3.0.1"
2401+
resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.1.tgz#80fcbcbaf7ce031e0ef2dd29b1bfc7c3f583611f"
2402+
integrity sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==
24032403

24042404
"@sideway/pinpoint@^2.0.0":
24052405
version "2.0.0"
@@ -4518,7 +4518,7 @@ component-emitter@1.2.1:
45184518
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
45194519
integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=
45204520

4521-
component-emitter@^1.2.1:
4521+
component-emitter@^1.2.1, component-emitter@~1.3.0:
45224522
version "1.3.0"
45234523
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
45244524
integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
@@ -8871,7 +8871,7 @@ isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
88718871
isarray@2.0.1:
88728872
version "2.0.1"
88738873
resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e"
8874-
integrity sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=
8874+
integrity sha512-c2cu3UxbI+b6kR3fy0nRnAhodsvR9dx7U5+znCOzdj6IfP3upFURTr0Xl5BlQZNKZjEtxrmVyfSdeE3O57smoQ==
88758875

88768876
isarray@^2.0.1:
88778877
version "2.0.5"
@@ -9044,20 +9044,13 @@ json3@^3.3.2, json3@^3.3.3:
90449044
integrity sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==
90459045

90469046
json5@^1.0.1:
9047-
version "1.0.1"
9048-
resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
9049-
integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
9050-
dependencies:
9051-
minimist "^1.2.0"
9052-
9053-
json5@^2.1.0, json5@^2.1.1:
9054-
version "2.1.1"
9055-
resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.1.tgz#81b6cb04e9ba496f1c7005d07b4368a2638f90b6"
9056-
integrity sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==
9047+
version "1.0.2"
9048+
resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593"
9049+
integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==
90579050
dependencies:
90589051
minimist "^1.2.0"
90599052

9060-
json5@^2.1.2:
9053+
json5@^2.1.0, json5@^2.1.1, json5@^2.1.2:
90619054
version "2.1.3"
90629055
resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"
90639056
integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==
@@ -9843,20 +9836,10 @@ minimist@0.0.8:
98439836
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
98449837
integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=
98459838

9846-
minimist@^1.1.0, minimist@^1.2.5:
9847-
version "1.2.5"
9848-
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
9849-
integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
9850-
9851-
minimist@^1.2.0:
9852-
version "1.2.0"
9853-
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
9854-
integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
9855-
9856-
minimist@^1.2.6:
9857-
version "1.2.6"
9858-
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
9859-
integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
9839+
minimist@^1.1.0, minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6:
9840+
version "1.2.7"
9841+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18"
9842+
integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==
98609843

98619844
minipass-collect@^1.0.2:
98629845
version "1.0.2"
@@ -9974,7 +9957,7 @@ move-concurrently@^1.0.1:
99749957
ms@2.0.0:
99759958
version "2.0.0"
99769959
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
9977-
integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
9960+
integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
99789961

99799962
ms@2.1.1:
99809963
version "2.1.1"
@@ -12725,29 +12708,24 @@ semver-diff@^3.1.1:
1272512708
semver "^6.3.0"
1272612709

1272712710
"semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0:
12728-
version "5.7.1"
12729-
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
12730-
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
12711+
version "5.7.2"
12712+
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8"
12713+
integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
1273112714

1273212715
semver@7.0.0:
1273312716
version "7.0.0"
1273412717
resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
1273512718
integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
1273612719

1273712720
semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0:
12738-
version "6.3.0"
12739-
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
12740-
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
12741-
12742-
semver@^7.3.2:
12743-
version "7.3.2"
12744-
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938"
12745-
integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==
12721+
version "6.3.1"
12722+
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
12723+
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
1274612724

12747-
semver@^7.3.4:
12748-
version "7.3.4"
12749-
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97"
12750-
integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==
12725+
semver@^7.3.2, semver@^7.3.4:
12726+
version "7.5.4"
12727+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
12728+
integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
1275112729
dependencies:
1275212730
lru-cache "^6.0.0"
1275312731

@@ -13022,11 +13000,11 @@ socket.io-client@2.3.0:
1302213000
to-array "0.1.4"
1302313001

1302413002
socket.io-parser@~3.3.0:
13025-
version "3.3.0"
13026-
resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.3.0.tgz#2b52a96a509fdf31440ba40fed6094c7d4f1262f"
13027-
integrity sha512-hczmV6bDgdaEbVqhAeVMM/jfUfzuEZHsQg6eOmLgJht6G3mPKMxYm75w2+qhAQZ+4X+1+ATZ+QFKeOZD5riHng==
13003+
version "3.3.3"
13004+
resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.3.3.tgz#3a8b84823eba87f3f7624e64a8aaab6d6318a72f"
13005+
integrity sha512-qOg87q1PMWWTeO01768Yh9ogn7chB9zkKtQnya41Y355S0UmpXgpcrFwAgjYJxu9BdKug5r5e9YtVSeWhKBUZg==
1302813006
dependencies:
13029-
component-emitter "1.2.1"
13007+
component-emitter "~1.3.0"
1303013008
debug "~3.1.0"
1303113009
isarray "2.0.1"
1303213010

@@ -14836,9 +14814,9 @@ widest-line@^3.1.0:
1483614814
string-width "^4.0.0"
1483714815

1483814816
word-wrap@~1.2.3:
14839-
version "1.2.3"
14840-
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
14841-
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
14817+
version "1.2.4"
14818+
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.4.tgz#cb4b50ec9aca570abd1f52f33cd45b6c61739a9f"
14819+
integrity sha512-2V81OA4ugVo5pRo46hAoD2ivUJx8jXmWXfUkY4KFNw0hEptvN0QfH3K4nHiwzGeKl5rFKedV48QVoqYavy4YpA==
1484214820

1484314821
worker-farm@^1.7.0:
1484414822
version "1.7.0"

src/__snapshots__/index.test.ts.snap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,8 @@ Array [
132132
"isEqual",
133133
"merge",
134134
"some",
135+
"range",
136+
"clamp",
135137
"isPromise",
136138
"Observable",
137139
"__types",

src/components/Icon/generated/MicrophoneFilled.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ const SvgMicrophoneFilled = (props: React.SVGProps<SVGSVGElement>) => (
44
<svg width='1em' height='1em' viewBox='0 0 24 24' {...props}>
55
<path
66
clipRule='evenodd'
7-
d='M8 7h3V5H8V4c0-1.334.667-2 2-2h4c1.333 0 2 .666 2 2v9.024c0 1.317-.667 1.975-2 1.975h-4c-1.333 0-2-.667-2-2V7zm11 3a1 1 0 011 1c0 4.071-3.061 7.435-7 7.93V20h3a1 1 0 010 2H8a1 1 0 010-2h3v-1.07c-3.939-.495-7-3.859-7-7.93a1 1 0 112 0c0 3.308 2.691 6 6 6s6-2.692 6-6a1 1 0 011-1zM8 10v2h3v-2H8z'
7+
d='M19 10C19.2652 10 19.5196 10.1054 19.7071 10.2929C19.8946 10.4804 20 10.7348 20 11C20 15.071 16.939 18.435 13 18.93V20H15C15.2652 20 15.5196 20.1054 15.7071 20.2929C15.8946 20.4804 16 20.7348 16 21C16 21.2652 15.8946 21.5196 15.7071 21.7071C15.5196 21.8946 15.2652 22 15 22H9C8.73478 22 8.48043 21.8946 8.29289 21.7071C8.10536 21.5196 8 21.2652 8 21C8 20.7348 8.10536 20.4804 8.29289 20.2929C8.48043 20.1054 8.73478 20 9 20H11V18.93C7.061 18.435 4 15.071 4 11C4 10.7348 4.10536 10.4804 4.29289 10.2929C4.48043 10.1054 4.73478 10 5 10C5.26522 10 5.51957 10.1054 5.70711 10.2929C5.89464 10.4804 6 10.7348 6 11C6 14.308 8.691 17 12 17C15.309 17 18 14.308 18 11C18 10.7348 18.1054 10.4804 18.2929 10.2929C18.4804 10.1054 18.7348 10 19 10Z'
8+
/>
9+
<path
10+
clipRule='evenodd'
11+
d='M8 6C8 3.79086 9.79086 2 12 2C14.2091 2 16 3.79086 16 6V11C16 13.2091 14.2091 15 12 15C9.79086 15 8 13.2091 8 11V6Z'
812
/>
913
</svg>
1014
)
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import React from 'react'
2+
3+
const SvgMicrophoneOffFilled = (props: React.SVGProps<SVGSVGElement>) => (
4+
<svg width='1em' height='1em' viewBox='0 0 24 24' {...props}>
5+
<path
6+
clipRule='evenodd'
7+
d='M19.0261 14.8189L17.5315 13.3244C17.8332 12.6091 18 11.8237 18 11C18 10.7348 18.1054 10.4804 18.2929 10.2929C18.4804 10.1054 18.7348 10 19 10C19.2652 10 19.5196 10.1054 19.7071 10.2929C19.8946 10.4804 20 10.7348 20 11C20 12.3828 19.6468 13.684 19.0261 14.8189Z'
8+
/>
9+
<path
10+
clipRule='evenodd'
11+
d='M8.42029 4.21319L10.0096 5.80252L14 9.79289L15.9341 11.727C15.9774 11.4912 16 11.2483 16 11V6C16 3.79086 14.2091 2 12 2C10.4331 2 9.07654 2.901 8.42029 4.21319Z'
12+
/>
13+
<path
14+
clipRule='evenodd'
15+
d='M3.70711 2.29289C3.31658 1.90237 2.68342 1.90237 2.29289 2.29289C1.90237 2.68342 1.90237 3.31658 2.29289 3.70711L8 9.41421V11C8 13.2091 9.79086 15 12 15C12.4744 15 12.9294 14.9174 13.3517 14.7659L14.8596 16.2738C14.0091 16.7368 13.0347 17 12 17C8.691 17 6 14.308 6 11C6 10.7348 5.89464 10.4804 5.70711 10.2929C5.51957 10.1054 5.26522 10 5 10C4.73478 10 4.48043 10.1054 4.29289 10.2929C4.10536 10.4804 4 10.7348 4 11C4 15.071 7.061 18.435 11 18.93V20H9C8.73478 20 8.48043 20.1054 8.29289 20.2929C8.10536 20.4804 8 20.7348 8 21C8 21.2652 8.10536 21.5196 8.29289 21.7071C8.48043 21.8946 8.73478 22 9 22H15C15.2652 22 15.5196 21.8946 15.7071 21.7071C15.8946 21.5196 16 21.2652 16 21C16 20.7348 15.8946 20.4804 15.7071 20.2929C15.5196 20.1054 15.2652 20 15 20H13V18.93C14.208 18.7782 15.3334 18.3566 16.3133 17.7275L20.2929 21.7071C20.6834 22.0976 21.3166 22.0976 21.7071 21.7071C22.0976 21.3166 22.0976 20.6834 21.7071 20.2929L3.70711 2.29289Z'
16+
/>
17+
</svg>
18+
)
19+
20+
export default SvgMicrophoneOffFilled
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import React from 'react'
2+
3+
const SvgMicrophoneOffFilled = (props: React.SVGProps<SVGSVGElement>) => (
4+
<svg width='1em' height='1em' viewBox='0 0 24 24' {...props}>
5+
<path
6+
clipRule='evenodd'
7+
d='M14 6V9.79289L15.9341 11.727C15.9774 11.4912 16 11.2483 16 11V6C16 3.79086 14.2091 2 12 2C10.4331 2 9.07654 2.901 8.42029 4.21319L10.0096 5.80252C10.1088 4.79065 10.9621 4 12 4C13.1046 4 14 4.89543 14 6Z'
8+
/>
9+
<path
10+
clipRule='evenodd'
11+
d='M8 9.41421V11C8 13.2091 9.79086 15 12 15C12.4744 15 12.9294 14.9174 13.3517 14.7659L14.8596 16.2738C14.0091 16.7368 13.0347 17 12 17C8.691 17 6 14.308 6 11C6 10.7348 5.89464 10.4804 5.70711 10.2929C5.51957 10.1054 5.26522 10 5 10C4.73478 10 4.48043 10.1054 4.29289 10.2929C4.10536 10.4804 4 10.7348 4 11C4 15.071 7.061 18.435 11 18.93V20H9C8.73478 20 8.48043 20.1054 8.29289 20.2929C8.10536 20.4804 8 20.7348 8 21C8 21.2652 8.10536 21.5196 8.29289 21.7071C8.48043 21.8946 8.73478 22 9 22H15C15.2652 22 15.5196 21.8946 15.7071 21.7071C15.8946 21.5196 16 21.2652 16 21C16 20.7348 15.8946 20.4804 15.7071 20.2929C15.5196 20.1054 15.2652 20 15 20H13V18.93C14.208 18.7782 15.3334 18.3566 16.3133 17.7275L20.2929 21.7071C20.6834 22.0976 21.3166 22.0976 21.7071 21.7071C22.0976 21.3166 22.0976 20.6834 21.7071 20.2929L3.70711 2.29289C3.31658 1.90237 2.68342 1.90237 2.29289 2.29289C1.90237 2.68342 1.90237 3.31658 2.29289 3.70711L8 9.41421Z'
12+
/>
13+
<path
14+
clipRule='evenodd'
15+
d='M17.5315 13.3244L19.0261 14.8189C19.6468 13.684 20 12.3828 20 11C20 10.7348 19.8946 10.4804 19.7071 10.2929C19.5196 10.1054 19.2652 10 19 10C18.7348 10 18.4804 10.1054 18.2929 10.2929C18.1054 10.4804 18 10.7348 18 11C18 11.8237 17.8332 12.6091 17.5315 13.3244Z'
16+
/>
17+
</svg>
18+
)
19+
20+
export default SvgMicrophoneOffFilled

src/components/Icon/generated/MicrophoneOutline.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const SvgMicrophoneOutline = (props: React.SVGProps<SVGSVGElement>) => (
44
<svg width='1em' height='1em' viewBox='0 0 24 24' {...props}>
55
<path
66
clipRule='evenodd'
7-
d='M19 10a1 1 0 011 1c0 4.071-3.061 7.435-7 7.93V20h3a1 1 0 010 2H8a1 1 0 010-2h3v-1.07c-3.939-.495-7-3.859-7-7.93a1 1 0 112 0c0 3.308 2.691 6 6 6s6-2.692 6-6a1 1 0 011-1zm-9-8h4c1.333 0 2 .666 2 2v9.024c0 1.317-.667 1.975-2 1.975h-4c-1.333 0-2-.667-2-2v-9C8 2.666 8.667 2 10 2zm0 2v9h4V4h-4zm0 2h2v2h-2V6zm0 3h2v2h-2V9z'
7+
d='M14 6V11C14 12.1046 13.1046 13 12 13C10.8954 13 10 12.1046 10 11V6C10 4.89543 10.8954 4 12 4C13.1046 4 14 4.89543 14 6ZM8 6C8 3.79086 9.79086 2 12 2C14.2091 2 16 3.79086 16 6V11C16 13.2091 14.2091 15 12 15C9.79086 15 8 13.2091 8 11V6ZM19.7071 10.2929C19.5196 10.1054 19.2652 10 19 10C18.7348 10 18.4804 10.1054 18.2929 10.2929C18.1054 10.4804 18 10.7348 18 11C18 14.308 15.309 17 12 17C8.691 17 6 14.308 6 11C6 10.7348 5.89464 10.4804 5.70711 10.2929C5.51957 10.1054 5.26522 10 5 10C4.73478 10 4.48043 10.1054 4.29289 10.2929C4.10536 10.4804 4 10.7348 4 11C4 15.071 7.061 18.435 11 18.93V20H9C8.73478 20 8.48043 20.1054 8.29289 20.2929C8.10536 20.4804 8 20.7348 8 21C8 21.2652 8.10536 21.5196 8.29289 21.7071C8.48043 21.8946 8.73478 22 9 22H15C15.2652 22 15.5196 21.8946 15.7071 21.7071C15.8946 21.5196 16 21.2652 16 21C16 20.7348 15.8946 20.4804 15.7071 20.2929C15.5196 20.1054 15.2652 20 15 20H13V18.93C16.939 18.435 20 15.071 20 11C20 10.7348 19.8946 10.4804 19.7071 10.2929Z'
88
/>
99
</svg>
1010
)
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import React from 'react'
2+
3+
const SvgVideoOffFilled = (props: React.SVGProps<SVGSVGElement>) => (
4+
<svg width='1em' height='1em' viewBox='0 0 24 24' {...props}>
5+
<path
6+
clipRule='evenodd'
7+
d='M3.70711 2.29289C3.31658 1.90237 2.68342 1.90237 2.29289 2.29289C1.90237 2.68342 1.90237 3.31658 2.29289 3.70711L2.82805 4.26739C2.27578 4.57704 1.99951 5.1605 1.99951 6.01776V18.0048C1.99951 19.3388 2.67051 20.0048 4.01351 20.0048H14.9995C15.9685 20.0048 16.5855 19.6523 16.8503 18.9479L19.5 21.7219C19.8905 22.1125 20.5237 22.1125 20.9142 21.7219C21.3047 21.3314 21.3047 20.6983 20.9142 20.3077L3.70711 2.29289ZM5.99951 15.0098H9.99951C10.6665 15.0028 10.9995 15.3348 10.9995 16.0048C10.9995 16.6748 10.6665 17.0098 9.99951 17.0098H5.99951C5.33251 17.0098 4.99951 16.6748 4.99951 16.0048C4.99951 15.3348 5.33251 15.0028 5.99951 15.0098Z'
8+
/>
9+
<path
10+
clipRule='evenodd'
11+
d='M8.09981 3.99975C10.7501 3.99885 13.7819 4.00052 14.9955 4.00476C16.3315 4.00976 16.9995 4.67576 16.9995 6.00476V9.01276L20.4025 7.80976C20.9085 7.63376 21.3005 7.63376 21.5775 7.80976C21.8555 7.98576 21.9965 8.28576 21.9995 8.71076V15.3868C22.0165 15.7408 21.8755 16.0068 21.5775 16.1838C21.2795 16.3608 20.9325 16.3908 20.5375 16.2738L19.5732 15.9276C19.4262 15.8748 19.2935 15.7883 19.1859 15.675L8.09981 3.99975Z'
12+
/>
13+
</svg>
14+
)
15+
16+
export default SvgVideoOffFilled

0 commit comments

Comments
 (0)